myatia
Programmer
- Nov 21, 2002
- 232
Hi, all,
I'm having issues with some nested list tags. I've set the font for each <li> element to 0.8em. When I nest the list tags, as shown below, the nested text shows up really small (0.64em, I'm assuming). How do I stop this? Any advice would be appreciated.
Misty
Stylesheet
Nested list
Misty Garrick
I'm having issues with some nested list tags. I've set the font for each <li> element to 0.8em. When I nest the list tags, as shown below, the nested text shows up really small (0.64em, I'm assuming). How do I stop this? Any advice would be appreciated.
Misty
Stylesheet
Code:
div.bodyCopy li { font-size:0.8em; line-height:1.5em; }
Nested list
Code:
<ul>
<li>Non-competitive environment</li>
<li>Link on Conference website</li>
<li>Email blasts</li>
<li>Recognition in various publications
<ul>
<li>Footnote</li>
<li>Conference Program</li>
<li>Press Release</li>
</ul></li>
<li>Prominent signage at event</li>
<li>Attendee list at conclusion of conference</li>
</ul>
Misty Garrick