Jump to content

Problem with css


Recommended Posts

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

  • 5 weeks later...

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...