On Nov 16, 3:31 am, mike <[email protected]> wrote: > Just wondering if anyone has made working navigation menus which > render horizontally instead of the current default vertical, and is > willing to share the CSS secrets. > > Cheers > > Mike
Hi, I replied to your message, but it seems like it got lost somehow. Here's a copy: On Nov 16, 3:31 am, mike <[email protected]> wrote: > Just wondering if anyone has made working navigation menus which > render horizontally instead of the current default vertical, and is > willing to share the CSS secrets. Try this to your menu.css --- INDEX/pub/stylesheets/menu.css +++ WORKDIR/pub/stylesheets/menu.css @@ -1,7 +1,7 @@ .menu { - width: 15em; + width: 100%; /* background: #d8eaf8 url(/weblocks-common/pub/images/menu/ top_background.png) repeat-x;*/ } @@ -35,6 +35,8 @@ .menu ul li { padding-left: 0; + float: left; + width: 10%; } .menu ul li.selected-item Best regards Petter -- You received this message because you are subscribed to the Google Groups "weblocks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/weblocks?hl=en.
