Hi folks, Just wondering if anyone knows of a tutorial which shows you how to create a similar menu system to the one which is used on 9rules?
That wouldn't be very hard. Try something like this: #firstcolumn { width: 140px; height: 100%; display: inline; margin-left: 140px; font-weight: bold; font-size: 8pt; float: left; color: #D8CE9F;} #secondcolumn { width: 140px; height: 100%; margin-left: 70px; display: inline; font-weight: bold; font-size: 8pt; float: left; color: #D8CE9F;} #thirdcolumn { width: 140px; height: 100%; margin-left: 50px; display: inline; font-weight: bold; font-size: 8pt; color: #D8CE9F; float: left;} Code (markup): And so on. And the HTML should look like this: <div id="firstcolumn"> Link Link Link </div> <div id="secondcolumn"> Link Link Link </div> <div id="thirdcolumn"> Link Link Link </div> HTML: Hope this helps! Kate