Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I change the color of certain text?


videoquest

Recommended Posts

Posted

quick answer: i believe in index.php .. dunno where, cause i removed this part form my index.php

Posted

Find the file Stylesheet.css

 

And look for

 

TD.main, P.main {

font-family: Helvetica;

font-size: 11px;

line-height: 1.5;

}

 

that's what you want to change

 

 

Change to

 

TD.main, P.main {

font-family: Helvetica;

font-size: 11px;

font-color:#ffffff

line-height: 1.5;

}

 

 

font-color:#ffffff makes it white

at the end of the day the code will be good

Posted

i was thinking more like he wants to change only part of text .. like <b><i><text_definition></i></b>

 

cause in stylesheet he will change whole text ..

Posted

But that text is Black on a Black BG.

 

 

To change the text on a particular part you will have to find the text that you want to change and write before

 

<font color="COLOR"> TEXT TO CHANGE </font>

at the end of the day the code will be good

Posted

Hey Guys

 

Thanks for the advice. Here is my problem. I changed what you said to change but when you click on a product the text wont show up! I have tried changing the color how you showe dme but it just wont work. Its all their cause when you highlight the area it shows up!

 

check it out www.videoquest.ca/catalogue

 

Is there any type of documentation that shows you were to go to change all the different colors throughout the PHP?? Cause I would like to be able to change the colour of the bars on the Whats New and side menu's but I cant find it anywhere!

Posted

Is there any type of documentation that shows you were to go to change all the different colors throughout the PHP?? Cause I would like to be able to change the colour of the bars on the Whats New and side menu's but I cant find it anywhere!

Posted

Get the

 

TD.main, P.main {

font-family: Verdana, Arial, sans-serif;

font-size: 11px;

line-height: 1.5;

}

 

and change it so its

 

TD.main{

font-family: Verdana, Arial, sans-serif;

font-size: 11px;

line-height: 1.5;

}

 

P.main {

font-family: Verdana, Arial, sans-serif;

font-size: 11px;

line-height: 1.5;

font-color:#FF0000

}

at the end of the day the code will be good

Archived

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

×
×
  • Create New...