SeeIT Solutions
07-20-2005, 02:17 AM
how do I make the bullets of an ol list (using decimal) bold?
|
||||
ol decimal bullet boldSeeIT Solutions 07-20-2005, 02:17 AM how do I make the bullets of an ol list (using decimal) bold? _Aerospace_Eng_ 07-20-2005, 03:46 AM You can either make the whole list bold, that will make the bullets bold, or do something like this <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> <style type="text/css"> ol { list-style-type:decimal; font-weight:bold; } ol li a, ol li a:link, ol li a:visited, ol li a:hover, ol li a:active { font-weight:normal; text-decoration:none; cursor:default; } </style> </head> <body> <ol> <li><a href="#">blah</a></li> <li><a href="#">blah</a></li> <li><a href="#">blah</a></li> </ol> </body> </html> Had an extra hover in there, it should be active SeeIT Solutions 07-20-2005, 04:10 AM thanks |
| |||
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum