Michael W. Ryan on Thu, 27 Apr 2000 10:47:31 -0400 (EDT) |
On Wed, 26 Apr 2000, Joe Laudadio wrote: > > You can use stylesheets. Add this to the <HEAD> section: > > <STYLE type="text/css"> > LI {font-weight: bold; } > </STYLE> Actually, this would apply the style to every <LI> tag in the document, not just ones in unordered lists. > If dont want every bulleted list bolded, you can do > > LI.boldface {font-weight: bold;} > > Then for all items that you want bulleted you do this: > > <LI class="boldface">Bleh</LI> An alternate is to apply the style to the list itself. Just define the following style in your <style> element or styleshett: .boldface {font-weight: bold;} And then just use it on any element you want to have bold, i.e.: <ul class="boldface"> <li>Bleh</li> ... </ul> Michael W. Ryan, MCP, MCT | OTAKON 2000 mryan@netaxs.com | Convention of Otaku Generation http://www.netaxs.com/~mryan/ | http://www.otakon.com/ No, I don't hear voices in my head; I'm the one that tells the voices in your head what to say. ______________________________________________________________________ Philadelphia Linux Users Group - http://plug.nothinbut.net Announcements - http://lists.nothinbut.net/mail/listinfo/plug-announce General Discussion - http://lists.nothinbut.net/mail/listinfo/plug
|
|