Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

3 questions in one :)


ashlvsya

Recommended Posts

Posted

All the Q's I need to finish me site I need to ask in here.

 

How do you tile a image as a background?

 

oscommerce-1.png

 

And how do I get rid of this bar?

 

example2.gif

 

Last question. Where can I find a good CSS Guide explaining what values change what. I remember someone published a Invision Power Board One.

Posted

Did you learn how to add images? If not, use this in your CSS sheet where you want a background to appear...

 

  background-image: url(file/file/imagename.jpg);
 background-attachment: fixed;
 background-repeat: repeat;

 

For example, this

.infoBoxContents {
 background: #f8f8f9;
 font-family: Verdana, Arial, sans-serif;
 font-size: 10px;
}

 

Would become this

.infoBoxContents {
 background-image: url(file/file/imagename.jpg);
 background-attachment: fixed;
 background-repeat: repeat;
 font-family: Verdana, Arial, sans-serif;
 font-size: 10px;
}

 

I'm not sure which style go to which area, so you might want to just play with them until you find where you are wanting to adjust. Of course, you will want to backup your original css sheet. What I personally do is first adjust the color (i.e. #f8f8f9) to a very obvious color (i.e. #000000) and see what changes on my site. If I hit the correct area, I will then put in the URL for the background. If I hit the wrong area, I will simply change the color back to what it was.

Contributions I used : Updated 06-13-04 23:42

----------------

Vote on My Graphis Poll

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...