Thread: Code Cleanup
View Single Post
12-13-2004, 03:26 AM
#6
Legendary is offline Legendary
Status: Member
Join date: Nov 2004
Location:
Expertise:
Software:
 
Posts: 115
iTrader: 0 / 0%
 

Legendary is on a distinguished road

  Old

its childs play, then what's wrong with just slip it in?

html
Code:
		<!-- BEGIN TOPNAV -->
		<div id="menu">
			<ul>
				<li>whatever</li>
				<li>whatever</li>
				<li>whatever</li>
				<li>whatever</li>
				<li>whatever</li>
				<li>whatever</li>
			</ul>
		</div>
css
Code:
#menu	{
	width: 700px;
	height: 25px;
	background: #000;
	text-align: center;
	}
	
#menu ul	{
	margin: 0;
	padding: 0;
	}
	
#menu ul li	{
	display: inline;
	list-style: none;
	padding: 2px 15px;
	}