jokaya Posted November 26, 2008 Share Posted November 26, 2008 Hello i need to change the font colour in the country list where customers create their account. At the moment the backround and font colour is very similar. I have searched both stylesheets and can not find whereit is. with my search i foundout it's TD.main But im still cen't figer this is my TD.main TD.main, P.main { font-family: Verdana, Arial, sans-serif; font-size: 11px; line-height: 1.5; color: #000000; background: #cccccc; border: solid #005b87 1px; padding: 4px; Link to comment Share on other sites More sharing options...
ABCommerce! Posted November 26, 2008 Share Posted November 26, 2008 That is the correct change but there are lots of places that style is used so it will change them all. If you want to change just 1 then create a new style and make the change in the create_account.php file such as <td class="country"><?php echo ENTRY_COUNTRY; ?></td> And then in your stylesheet you can add TD.country { font-family: Verdana, Arial, sans-serif; font-size: 11px; line-height: 1.5; color: #000000; background: #cccccc; border: solid #005b87 1px; padding: 4px; } Link to comment Share on other sites More sharing options...
Guest Posted November 26, 2008 Share Posted November 26, 2008 Unfortunately the above will not work for you. In catalog/stylesheet.css find CHECKBOX, INPUT, RADIO, SELECT { font-family: Verdana, Arial, sans-serif; font-size: 11px; } That is what controls your form fields. If you need to change select or pulldown menu, you could do this. This would still affect all pulldown menus. Change the above code to CHECKBOX, INPUT, RADIO { font-family: Verdana, Arial, sans-serif; font-size: 11px; } Right below that add SELECT { font-family: Verdana, Arial, sans-serif; font-size: 11px; } Chang the select style to what you need. Link to comment Share on other sites More sharing options...
jokaya Posted November 26, 2008 Author Share Posted November 26, 2008 Thank you !!! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.