Align menu to the right on Artisteer31-FullHeader

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
6/26/2012 12:39:09 PM
Gravatar
Total Posts 21

Align menu to the right on Artisteer31-FullHeader

Hi,

I have used the Artisteer31-fullheader template as a base for one of my sites. I copied it and made a new template successfully and have changed it all around to achieve the look I want but i'm stuck on aligning the dropdown menu. I have changed up the menu in terms of colours and spacing etc but I cannot get it to align right instead of being centralised. I have tried just about everything I can think of and am running out of options, so can anyone point me in the right direction as to how I can get the menu to align to the right?

 

Thanks

7/2/2012 2:45:54 AM
Gravatar
Total Posts 21

Re: Align menu to the right on Artisteer31-FullHeader

If anyones looking to figure this one out I finally found it under the ul.art-hmenu class. the 'left: 50%' was making the menu appear centralised to the position it was placed so remove the float:left, and the left:50% and change the position to absolute and it will then be aligned to the right.

 

ul.art-hmenu{
    position:absolute;
    right:0px;
    padding: 4px 4px 4px 4px;
   /*position:relative;*/
   /*float: left;*/
   /*left: 50%;

 

 

Hope this helps someone!

Damian

You must sign in to post in the forums. This thread is closed to new posts.