Hi,

We have a design which has two sets of menus and we would like to give every
designer control on laying out the menus using their own CSS. The HTML that
we are looking at is extremely simple.
---------------

<div id="Menu2">
    <ul>
       <li><a href="#">Home</a></li>
       <li><a href="#">Contact us</a></li>
       <li class="last"><a href="#">Sitemap</a></li>
   </ul>
 </div>

   <div id="Menu2">
   <ul>
       <li class="title">Languages:</li>
            <li><a href="#" class="Selected">English</a></li>
            <li><a href="#">Dutch</a></li>
            <li><a href="#">French</a></li>
            <li><a href="#">Italian</a></li>
   <li class="last"><a href="#">Spanish</a></li>
   </ul>
   </div>
--------------------

While this html gives us the flexibility to place and display the individual
menus independent of each other, it does not cater for the usecase where we
have to place both of these menus horizontally aligned with the same
background shades. Is this doable with this html or do we need to change the
html?

Regards,

Sohail
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to