css - Failed to load the url firefox -
i have loaded css background image wont displayed in browser, working in codeigniter framework. using firefox...
#star ul.star { list-style:none; margin:0; padding: 0; width:85px; height:20px; left: 10px; top:4px; position:relative; float:left; background:url('../media/stars.gif') repeat-x; cursor:pointer; }
you need give absolute path of image or if "media" folder in root directory can use this
background:url('/media/stars.gif') repeat-x;
may you
Comments
Post a Comment