I'm trying to fix a new issue myself, but to hours of no avail. To remove bullet points from appearing in the buttons, I pasted the code you've written below:
Code:
.header img {float: left;}
.header ul {
margin: 5px 0 0 400px;
text-align: center;
list-style: none;
}
That works fine for the buttons. However, I'd like to bullet point some of the text in the body of a few pages. I tried the "You need to define a class for the bullets you want to hide" suggestion given at the page linked here:
http://stackoverflow.com/questions/1...how-them-for-l
However, all I seem to be doing is making things worse following that. As things are with the existing code (not making the above changes), when trying to code in a list in the text, it is not showing any bullet points (I'd prefer diamonds if possible), and is instead moving that text outside the margin/padding, with all my text style tweaks not showing on that listed text.
How do I limit the "list-style-none" to the buttons/header only?
Thanks again...