CSS and JS do not render on mobile devices

0

My rels links does not open on mobile devices, like css js and images does anyone know what can be happening?

<link rel="stylesheet" href="<?php echo BASE_CSS_SITE; ?>/bootstrap.min.css"/> 
<link rel="stylesheet" href="<?php echo BASE_CSS_SITE; ?>/index.css"/> 
<link rel="stylesheet" href="<?php echo BASE_CSS_SITE; ?>/jquery.slides.css"/> 
    
asked by anonymous 25.09.2015 / 20:01

1 answer

0
<link rel="stylesheet" href="<?php echo BASE_CSS_SITE; ?>/bootstrap.min.css" media="all"/> 
<link rel="stylesheet" href="<?php echo BASE_CSS_SITE; ?>/index.css" media="all"/> 
<link rel="stylesheet" href="<?php echo BASE_CSS_SITE; ?>/jquery.slides.css" media="all"/> 

Put media="all" in all of them as I did above. And what's in that predefined variable BASE_CSS_SITE ?

    
25.09.2015 / 20:25