How to edit section header's look?
It does't fit my menu.
How to edit section header's look?
-
- Forum Members
- Posts: 76
- Joined: Sun Aug 13, 2006 5:35 pm
Re: How to edit section header's look?
Download firefox, get web developer toolbar for it, open your page, from wedev toolbar select outline -> current element. hover your mouse over the desired element (in this case section header) in page note the structure at the bottom of the browser. open your css and add rules for that particular structure (you only need two or three levels read backwards from the structure)
it might be something like
html > body > #content > #menu > ul >li > h3.sectheader
so your css would then be
#menu ul li h3 {
font-size:50%;
}
hope this helps
it might be something like
html > body > #content > #menu > ul >li > h3.sectheader
so your css would then be
#menu ul li h3 {
font-size:50%;
}
hope this helps