CSS
-
When i use the css(cascading style sheets) in my web page the background image can't b displayed but the color does, help me?
-
When i use the css(cascading style sheets) in my web page the background image can't b displayed but the color does, help me?
without code no 1 can understand wht is yr prob
-
When i use the css(cascading style sheets) in my web page the background image can't b displayed but the color does, help me?
-
If the image is relative to the css or in an images folder inside the given theme folder, it should look like this: /* images folder located inside theme folder */ background-image:url("images/yourimage.jpg"); /* images folder located in root of app */ background-image:url("/images/yourimage.jpg"); Hope this helps
-
When i use the css(cascading style sheets) in my web page the background image can't b displayed but the color does, help me?
As you have been told ... image pathes in css files are relative pathes ... depending on where you are using the image currently (herarichally in folders) ... so the same image you can see it in a page in folder1 and not in folder1/folder2... you can manage using absoulte path to be loaded in runtime in your base page if you have one for example ...
Sincerely Samer Abu Rabie Note: Please remember to rate this post to help others whom reading it.