Page 1 of 1

Right Column Menu with Sub menu items

Posted: Mon May 05, 2008 5:54 pm
by Dipankar
Hello....

I have implemented a Vetricle menu on Right Column of my page. (Vertical menu for the CMS CSS Menu Module by Alexander Endresen)

Now the main problem that I am facing is , with the Sub Menu Items, as those are getting open  the extreme right side of the Browser beyond the right-hand side browser's slider, so, its partially visible.

I would like to open the Verticle submenu items on the left side of the menu.

Note: the menu is based on the right side of the page in Right Column.

Any help or suggestion is most welcome....

Dipankar

Re: Right Column Menu with Sub menu items

Posted: Mon May 05, 2008 6:13 pm
by Nullig
Try:

#primary-nav, #primary-nav ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
/* margin-left: -1px; */
  margin-right: -1px;
}

#primary-nav ul {
  position: absolute;
  top: 0;
/* left: 100%; */
  right: 100%;
  display: none;
}

Nullig

Re: Right Column Menu with Sub menu items

Posted: Wed May 07, 2008 4:09 pm
by Dipankar
Hello Nullig,

Thanks for your inputs, it worked out well...!  :)