Hello, I have been trying for weeks to figure out where and how I can change the font COLOR of only the product title. Any suggestions or hints would be very much appreciated, thank you
I am currently using: v1.3.9h
Hello, I have been trying for weeks to figure out where and how I can change the font COLOR of only the product title. Any suggestions or hints would be very much appreciated, thank you
I am currently using: v1.3.9h
Hello,
These things and many other are controlled in your stylesheet.css file. Use the browser FireFox and add Firebug from http://getfirebug.com/. This program will help you find any items in your site that you would like to style and give the portions of the stylesheet that are currently being applied that element.
The color and font of the product title is controlled by the H1 tag in the stylesheet. This is from one of my sites:
h1 {
font: bold 20px Arial;
color: #4e637e;
padding: 0 0 2px 0;
margin: 0 0 17px 0 !important;
}
Changing the red highlighted will change the color. However, it would also change the color for other headings using H1. I'm sure there is a way to add a new H1 entry to the stylesheet that applies only to product titles, but somebody more skilled than I will have to come along.
Thank you both for the great input! I found where to change the color... but no luck on where to change the font size, any suggestions?
![]()
@RescoCCC, The stylesheet where I changed the font color only had the option to change the color, the font wasn't available. Sample:
h1{
color:#000000;
}
![]()
Yes, I tried adding that but the font stayed the same size
Where did you find the style sheet to change your font size? I changed the font color in includes/templates/TEMPLATE NAME/css/stylesheet_new.css
Last edited by ricangem; 16 Oct 2011 at 01:36 AM.
Oh I understand, well I'll just keep looking around and hopefully I'll find a solution. Thank you for all your help, appreciate it![]()