Page 1 of 1
Horizontal Menu / Align To The Right
Posted: Sat Apr 14, 2007 12:01 am
by jtcreate
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
Re: Horizontal Menu / Align To The Right
Posted: Sat Apr 14, 2007 9:16 pm
by Bob
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 */
}
Re: Horizontal Menu / Align To The Right
Posted: Sun Apr 15, 2007 2:54 pm
by casidougal
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%;
}