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.
Changing the Font Size of Post Title
Started by
raydom
, Dec 12 2009 08:26 AM
2 replies to this topic
#1
Posted 12 December 2009 - 08:26 AM
#2
Posted 12 December 2009 - 09:26 AM
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.
#3
Posted 12 December 2009 - 01:03 PM
Hi Jackey,
thank you very much - works very good, especially after pressing the button next to the bug.
Raydom









