• I am working in the latest version of wordpress and with a child theme of the twenty eleven theme.

    I have a menu bar positioned to the right hand side of the screen. When you run your mouse over the menu item a list of menu items drops down below. Then as you run your mouse over those menu items the next list opens to the right and in some cases off the page. What I want to do is have the second list open to the left. Can some one please give me some idea how to achieve that.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Is your site’s language is rtl ?

    I am working both right and left menu option in latest version wordpress.i want to control both the menu option in the admin panel..

    @MousumiP – if you need help, please start your own thread – do not post in other people’s threads – you do not have the same question here at all.

    I played around with the menu’s CSS of 2011 and come up with this. ( must be used in child theme of 2011 )

    #access ul ul {
    	left:auto!important;
    	right:0;
    	float:right;
    	text-align:right;
    	box-shadow:-1px 3px 3px rgba(0, 0, 0, 0.2);
    }
    #access ul ul ul {
    	left:auto;right:100%;
    }

    This will make dropdown menu in 2011 adjusted to the left as opposed to right. I tested it in only FF, not sure how it will look in IE8.

    Thread Starter allanit

    (@allanit)

    @paulwpxp

    To answer your first question no the language is English LtR.

    But your second post was a great help, with that I got it working

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Left side menu items’ is closed to new replies.