raydom 0 Report post Posted December 12, 2009 Know that this can be accomplished via CSS but what would be the code to put in the custom css field to make font smaller but keep it h1. What is the class name and how can I figure this out? Thanks in advance. Share this post Link to post Share on other sites
Jackey 29 Report post Posted December 12, 2009 Example: ` #feature .fheading h1, .ftitle { font-size:40px; } ` The CSS principle allows you to only enter the changes you want to make to, in this case the title on the feature page. You can easily reveal the the code responsible for a particular of text or container using the firebug tool in firefox (this is a plugin for firefox). You just point and click at the text you want to change and it reveals the code involved. You can even edit it live on the page so you can view the effects of your changes. Nice tool... it learned me a lot in a very short time. Share this post Link to post Share on other sites
raydom 0 Report post Posted December 12, 2009 Hi Jackey, thank you very much - works very good, especially after pressing the button next to the bug. Raydom Share this post Link to post Share on other sites