Hello, i'm new to CSS positioning. In fact very new.
I have succeeded creating my layouts with background image and everything. However, I just realize as I click on the links in my site, my layout seems to have disappeared.
After doing some checking, I'm pretty convince it was the cause of .htaccess.
I implemented friendly url into my website thus url could become "/this/is/a/url"
and somehow, all my images cant seems to appear on that kind of path.
i've look through the net and understand that it could be because of the relative path or absolute. I tried all and it's still not working.
As I further tested, if it's only one path like "/this" the layout would appear.
Things I've tried
background: url("http://my/site.com/images/bg1.jpg")
background: url( http://my/site.com/images/bg1.jpg)
background: url(../images/bg1.jpg)
background: url(/images/bg1.jpg)
None of those works. Does anyone had any idea why?
|