Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Color change problem (Please help)


Guest

Recommended Posts

Posted

Hello all

 

I am interested how can I modify the background of infobox heading

 

look at attachment I need to make like it is shown in the second picture

 

thanks

 

convert.JPG

Posted

may be in each box is need td to modify?

Posted

Your pictures aren't showing up. Based on your question I'm assuming you mean the infoboxes on the left and right side with categories and information. If so look here

catalog/stylesheet.css find

TD.infoBoxHeading {
 font-family: Verdana, Arial, sans-serif;
 font-size: 10px;
 font-weight: bold;
 background: #bbc3d3;
 color: #ffffff;
}

There are 3 pics in there too, corner_right.gif, corner_left.gif and corner_right_left.gif. They can be found in

catalog/images/infox

If that isn't what you need please give us more details so we can help you.

Posted

I know this

 

I know how to change that color

 

but I need to make infobox headings like it is shown on picture, I will now upload

 

Did you see how the infobox heading is showing not one color but it is like background image, so how can I put in CSS background image if it is possible

 

convert.JPG

Posted

To put in a background image in css put the folloeing the css I posted above

TD.infoBoxHeading {
 font-family: Verdana, Arial, sans-serif;
 font-size: 10px;
 font-weight: bold;
 background: #bbc3d3;
 color: #ffffff;
 background-image: url('images/your_image_here.gif');
 background-repeat: repeat;
}

If you do not want the image to repeat then make it no-repeat.

This will put the same image in all of your infox headings. Is that what you are looking for?

Archived

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

×
×
  • Create New...