Hi I have a Footer that im making It has an unordered list of a network of websites I'm making I want the ul of websites to display INLINE Not sure how to make the code Any help much appreciated
Hi rowen, If I understand it correctly you just want them to line up.. Here's how. HTML: <ul id="site"> <li><a href="">Website #1</a></li> <li><a href="">Website #2</a></li> <li><a href="">Website #3</a></li> </ul> Code (markup): CSS: (play with the margin-right to seperate your elements) #site li{ display: inline; margin-right: 5px; } Code (markup): Hope that's what ur looking for