If you register for free, you will be able to post threads, vote on polls and lots more. If you have problems with the registration or logging in, please contact the administrator.
Ok Rick first you don't use the <p> tag for lists. Here is the css code for an un ordered list which means it won't show a i, I, A, B, etc.
ul {
color: #ffffff;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 12px;
padding-right: 2px;
padding-bottom: 4px;
list-style-type: square; The color code is only if you need to change the color of the square
Here is the code for the actual list:
li.main {
font-family: verdana, arial, helvetica, sans-serif;
font-size: 12px;
color: #000000;
list-style-type: square; Only use this if you have different lists in the site that need different colors or list types such as circles
Here is the list code to use an image instead of a square, circle etc.
ul {
font-size : 10px;
font-family : verdana, arial, helvetica, sans-serif;
color : #000000;
list-style-image: url(/graphics/bullet.gif);
}
This is the code you will use to have a gif as the bullet instead of the defaults. When using this code in the CSS there is no need to class out the list in the HTML. If you decide to change a normal bullet list from the defautl black square to a blue one then your html code would be:
<ul>
<li class="main">stuff here</li>
</ul>
The normal list HTML code if only changing the bullet to a gif:
<ul>
<li>stuff here</li>
</ul>
Just make sure you add the ul code in your CSS file.
:}
BTW both your sites are awesome Rick! Good work!! [righton]