Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • schoku Friend
    #142310

    Hi,

    on the Welcome to the Frontpage is the main menu from right to left, but the submenus are from left to right.
    I’ve tried a lot, but unfortunately no solution is found :((

    Can someone please help me?

    Thanks,

    bennitos Friend
    #309286

    Hi,

    Open ja.moomenu_rtl.css around line 125


    #ja-cssmenu li ul a {
    background:transparent none repeat scroll 0 0 !important;
    border-right:medium none;
    color:#AAAAAA !important;
    float:right;
    height:auto;
    line-height:normal;
    margin:0;
    padding:7px 10px;
    text-align:right;
    }

    Change the items marked as red to:


    #ja-cssmenu li ul a {
    background:transparent none repeat scroll 0 0 !important;
    border-right:medium none;
    color:#AAAAAA !important;
    float:left;
    height:auto;
    line-height:normal;
    margin:0;
    padding:7px 10px;
    text-align:left;
    }

    This should do what you want, always make a backup before changing 🙂

    schoku Friend
    #309321

    unfortunately it has not work :((
    I think it should be open from right to left and the title should be right justified.

    ja.moomenu_rtl.css:


    /*------------------------------------------------------------------------
    # JA Iolite for joomla 1.5 - Version 1.1 - Licence Owner JA117663
    # ------------------------------------------------------------------------
    # Copyright (C) 2004-2008 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
    # @license - Copyrighted Commercial Software
    # Author: J.O.O.M Solutions Co., Ltd
    # Websites: http://www.joomlart.com - http://www.joomlancers.com
    # This file may not be redistributed in whole or significant part.
    -------------------------------------------------------------------------*/

    #ja-cssmenu {
    margin: 0; /* all lists */
    padding: 0;
    background: url(../../images/vdot1.gif) no-repeat 0 13px;
    float: right;
    text-align: right;
    }

    #ja-cssmenu ul {
    margin: 0; /* all lists */
    padding: 0;
    }

    #ja-cssmenu li {
    margin: 0; /* all list items */
    padding: 0;
    float: right;
    display: block;
    background: none;
    background: url(../../images/vdot1.gif) no-repeat 100% 13px;
    cursor: pointer;
    text-align: right;
    }

    #ja-cssmenu li ul {
    width: 16.4em;
    position: absolute; /* second-level lists */
    z-index: 99;
    left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
    height: auto;
    width: 15.9em;
    }

    #ja-cssmenu li ul ul {
    margin: -2em 0 0 15em; /* third-and-above-level lists */
    }

    #ja-cssmenu li li {
    padding: 0 1em 0 0;
    margin: 0;
    width: 14.9em;
    }

    #ja-cssmenu ul a {
    width: 14.8em;
    width: 10.8em;
    }

    #ja-cssmenu li:hover ul ul, #ja-cssmenu li:hover ul ul ul,
    #ja-cssmenu li.sfhover ul ul, #ja-cssmenu li.havechildsfhover ul ul, #ja-cssmenu li.havechild-activesfhover ul ul, #ja-cssmenu li.activesfhover ul ul,
    #ja-cssmenu li.sfhover ul ul ul, #ja-cssmenu li.havechildsfhover ul ul ul, #ja-cssmenu li.havechild-activesfhover ul ul ul, #ja-cssmenu li.activesfhover ul ul ul {
    left: -999em;
    }

    /* This "unhides" the sub-menus (left: -999em is what hides them) */
    #ja-cssmenu li:hover ul, #ja-cssmenu li li:hover ul, #ja-cssmenu li li li:hover ul,
    #ja-cssmenu li.sfhover ul, #ja-cssmenu li.havechildsfhover ul, #ja-cssmenu li.havechild-activesfhover ul, #ja-cssmenu li.activesfhover ul,
    #ja-cssmenu li li.sfhover ul, #ja-cssmenu li li.havesubchildsfhover ul, #ja-cssmenu li li.havesubchild-activesfhover ul, #ja-cssmenu li li.activesfhover ul,
    #ja-cssmenu li li li.sfhover ul, #ja-cssmenu li li li.havesubchildsfhover ul, #ja-cssmenu li li li.havesubchild-activesfhover ul, #ja-cssmenu li li li.activesfhover ul {
    left: auto;
    }

    /* STYLING THE MENU
    -----------------------------------*/
    /* 1st level */
    #ja-cssmenu li a {
    display: block;
    text-decoration: none;
    line-height: 30px;
    padding: 4px 20px 0;
    color: #AAAAAA;
    }

    #ja-cssmenu li a:hover,
    #ja-cssmenu li a:active,
    #ja-cssmenu li a:focus {
    color: #FA6900;
    background: url(../../images/circle.png) no-repeat center top;
    }

    #ja-cssmenu li:hover a,
    #ja-cssmenu li.sfhover a,
    #ja-cssmenu li.havechildsfhover a,
    #ja-cssmenu li.havechild-activesfhover a {
    color: #FA6900;
    background: url(../../images/circle.png) no-repeat center top;
    }

    #ja-cssmenu li a.active,
    #ja-cssmenu li a.active:hover,
    #ja-cssmenu li a.active:active,
    #ja-cssmenu li a.active:focus {
    color: #FA6900;
    background: url(../../images/circle.png) no-repeat center top;
    }

    /* 2nd level and above */
    #ja-cssmenu li ul {
    border: 1px solid #333333;
    border-top: 0;
    background: #0C0C0C;
    }

    #ja-cssmenu li ul ul {
    border: 1px solid #333333;
    }

    #ja-cssmenu li ul li {
    border-bottom: 1px solid #202020;
    border-right: none;
    background: none;
    }

    #ja-cssmenu li ul a {
    border-right: none;
    margin: 0;
    padding: 7px 10px;
    line-height: normal;
    height: auto;
    background: none !important;
    color: #AAAAAA !important;
    float: right;
    text-align: right;
    }

    #ja-cssmenu li.havesubchild,
    #ja-cssmenu li.havesubchild-active {
    background: url(../../images/arrow3_rtl.png) no-repeat 94% 50%;
    }

    #ja-cssmenu li ul a:hover,
    #ja-cssmenu li ul a:active,
    #ja-cssmenu li ul a:focus,
    #ja-cssmenu ul li:hover,
    #ja-cssmenu ul li.sfhover,
    #ja-cssmenu ul li.havesubchildsfhover,
    #ja-cssmenu ul li.havesubchild-activesfhover,
    #ja-cssmenu ul ul li:hover,
    #ja-cssmenu ul ul li.sfhover,
    #ja-cssmenu ul ul li.havesubchildsfhover,
    #ja-cssmenu ul ul li.havesubchild-activesfhover {
    background: #202020;
    color: #FA6900 !important;
    }

    #ja-cssmenu ul li a.active {
    background: none !important;
    color: #FA6900 !important;
    }

    #ja-cssmenu ul li a.active:hover,
    #ja-cssmenu ul li a.active:active,
    #ja-cssmenu ul li a.active:focus {
    color: #FA6900 !important;
    }

    schoku Friend
    #309604

    nobody can really help me :(( ?

Viewing 4 posts - 1 through 4 (of 4 total)

This topic contains 4 replies, has 2 voices, and was last updated by  schoku 15 years, 4 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum