Forum Moderators: not2easy

Message Too Old, No Replies

Line break before and after <ul> element...

         

Garfie

8:27 pm on Aug 23, 2004 (gmt 0)

10+ Year Member



Basically I have this
___________
Navigation:

* Link
* Link
* Link
* Link
* Link
* Link
__________

What I kind of need, is the blank line under the last Link and before the first Link to vanish... I tried display: inline; but that put it all on one line and got rid of the bullets. should I be trying something else?

Span

8:32 pm on Aug 23, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



ul {
margin-top:0;
margin-bottom:0;
}

should do it.
That is, if you're using an unordered list

Garfie

8:35 pm on Aug 23, 2004 (gmt 0)

10+ Year Member



Thank you sir, you learn something new every day :-D