I'm trying to 'undo' the style in an unnumbered list by putting an inline style statement in the 'li' tags. I have everything looking the way I want except that I'm missing the bullet.
Below is the original CSS and my inline style options to overwrite them:
#account_header li {
border-bottom: 1px solid #888888;
border-top: 1px solid #888888;
display: inline;
list-style-type: none;
margin: 0;
overflow: hidden;
padding: 0 10px 0 0;
color: #AA2222;
font-family: "arial","helvetica";
font-size: 16px;
font-weight: bolder;
}
Here's what I have inside my 'li' tag:
<li style="border: none;display: block;margin: 0;overflow: hidden;padding: 0;list-style:disc outside none;">
Thanks in advance...I've wasted plenty of time on this already!