Horizontal Menu / Align To The Right

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Post Reply
User avatar
jtcreate
Forum Members
Forum Members
Posts: 168
Joined: Wed Mar 21, 2007 11:01 am

Horizontal Menu / Align To The Right

Post 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
Mmmmm... Tasty.
Bob

Re: Horizontal Menu / Align To The Right

Post 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 */
}
casidougal
Forum Members
Forum Members
Posts: 98
Joined: Tue Jun 06, 2006 10:08 pm

Re: Horizontal Menu / Align To The Right

Post 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%;
}
Post Reply

Return to “CMSMS Core”