Log in

View Full Version : ddcolortabs question



ToddR
06-26-2007, 08:51 PM
Wondering if someone could help me with ddcolortabs.

How can I keep a menu from breaking into multiple lines when the browser's window isn't large enough to display the entire menu.

Thanks.

Jas
06-27-2007, 12:37 AM
I would put the whole menu in a table.


<table border=0 cellspacing=0 width='YOUR WIDTH'><tr><td>YOUR MENU</td><tr></table>

<!-- or you can try //-->
<div style='width:??px; height: ??px;'>YOUR MENU HERE</div>


I use the table for these things, but if you are a stickler for proper coding, use the div's.

This will keep a fixed width and invoke the H-scroll bar instead. I would recommend not being too happy with the H-Scroll bar though, because it can drive people from your site if they have to scroll horizontally to read a page.