Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unordered lists are losing CSS formatting...

Status
Not open for further replies.

backspin

Technical User
Mar 13, 2002
40
US
SO annoying...if I set of list of items as an unordered list, the CSS formatting changes; still says it's set to the style, but (in Navigtor) show the default font/size/color instead of the CSS style. The code for each item reads as:

<li class=&quot;text&quot;>text here</li>

I have to go in and change each item manually, to:

<li> <span class=&quot;text&quot;>Scholarship Questions and Answers</span>

Then it works fine. This is taking WAY too much time for such a stupid thing! Is there any way to make UD do it the right way?
 
Hi

Yeah, this annoys me as well. You need to define both
Code:
<li> and <ul>
to guarantee that your css formatting of lists works on IE and NN, so apply the class to the
Code:
<ul>
and do the whole list. Derren
[Mediocre talent - spread really thin]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top