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
Right Column Menu with Sub menu items
Re: Right Column Menu with Sub menu items
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
#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
Hello Nullig,
Thanks for your inputs, it worked out well...!
Thanks for your inputs, it worked out well...!
