MagicFire Posted October 29, 2012 Share Posted October 29, 2012 Hi, I've found something noying in my shop. I've made my own module with some html structure. After editing on my localhost I've uploaded it to the real server, but there some mistake happened. I don't know why but I cannot force PS to show some my pictures as BG for div's. The css code is absolutely right: #show{ background:url("../img/Show_bg.png") no-repeat scroll transparent; width:145px; height:33px; margin-left: 75px; margin-top: 10px; overflow: hidden; border: medium none; cursor: pointer; } Throw Firebug I know he assigned the styles properly, only when I try to show it my moving cursor over this attribute, it show me that it couldn't load the URL. And even if I try to see this picture directly, it shows me, that this picture has some mistakes (blank page with error message, not the 404). Where could be the problem? Thanks Link to comment Share on other sites More sharing options...
[email protected] Posted November 27, 2012 Share Posted November 27, 2012 you could try using the full URL in the code including the http://www. Link to comment Share on other sites More sharing options...
vekia Posted November 28, 2012 Share Posted November 28, 2012 Sometimes web browsers and web services are case sensitive, try to change the Show_bg.png in: background:url("../img/Show_bg.png") no-repeat scroll transparent; to show_bg.png background:url("../img/show_bg.png") no-repeat scroll transparent; Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now