Welcome Guest Search | Active Topics | Sign In | Register

Spreading MenuItems Options
Alex
Posted: Monday, February 18, 2008 9:04:31 AM
Rank: Newbie
Groups: Member

Joined: 2/16/2008
Posts: 1
I have 5 items in the menu and I would like to position the first 3 on the left and the last 2 on the right. The menu itself supports width="100%" but the menuitems require an integer not a percent otherwise I could use a separator. Is there a way to dynamically change the width or padding of a separator?
eo_support
Posted: Monday, February 18, 2008 9:08:40 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,096
Hi Alex,

The easiest way for you to do that is to use two menus:

Code: HTML/ASPX
<table>
    <tr>
       <td>
           first menu goes here
       </td>
       <td width="99%">
       </td>
           second menu goes here
       <td>
       </td>
    </tr>
</table>


That way you can have full control of the layout. You want to make sure the table has the background as the menus. So it looks still like one piece. :)

Thanks


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.