Hello,
I hope this is an easy fix. I searched, but didn't find the answer. I'd like to align the horizontal css menu to the right side, instead of the left. I'm using the standard stylesheet that came with the CMS (which is awesome btw).
Any help is most appreciated.
Thank you,
Jeff
Horizontal Menu / Align To The Right
Horizontal Menu / Align To The Right
Mmmmm... Tasty.
-
Bob
Re: Horizontal Menu / Align To The Right
I'm not sure, but look for something in your CSS script that says " float: left; " and change to "float: right; "... just do't use my quotes though ... see if that works
here's an example:
div#listmenu li {
float:right; /* causes the list to align horizontally instead of stack */
position:relative; /* positioning context for the absolutely positioned drop-down */
list-style-type:none; /* removes the bullet off each list item */
background-color:#FFA; /*sets the background of the menu items */
border-right:1px solid #069; /* creates dividing lines between the li elements */
}
here's an example:
div#listmenu li {
float:right; /* causes the list to align horizontally instead of stack */
position:relative; /* positioning context for the absolutely positioned drop-down */
list-style-type:none; /* removes the bullet off each list item */
background-color:#FFA; /*sets the background of the menu items */
border-right:1px solid #069; /* creates dividing lines between the li elements */
}
-
casidougal
- Forum Members

- Posts: 98
- Joined: Tue Jun 06, 2006 10:08 pm
Re: Horizontal Menu / Align To The Right
Try something like the following in the horizontal menu CSS sheet:
#menuwrapper {
/* overflow: hidden; */
background-color: transparent;
z-index: 500;
position: relative;
right: 5px
width: 95%;
}
#menuwrapper {
/* overflow: hidden; */
background-color: transparent;
z-index: 500;
position: relative;
right: 5px
width: 95%;
}
