Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #209639

    Is there a way to make a left SideBar behave like a right sideBar in terms of out putting a Hierarchical menu. I don’t want to change it for all the left SideBars, just one of them.

    Thanks

    Todd

    #209826

    any ideas…

    #209899

    Hi!

    You can add this on Quick CSS:

    .sidebar_left.sidebar {
    text-align: left;
    }
    
    #top .sidebar_left .widget_nav_menu ul ul li:before {
    left: 0;
    }

    If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 .sidebar_left.sidebar {
    text-align: left;
    }
    
    .page-id-2251 .sidebar_left .widget_nav_menu ul ul li:before {
    left: 0;
    }

    Cheers!
    Ismael

    #211509

    Thanks :-)

    #211704

    Hey!

    Glad it worked. :)

    Cheers!
    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Left SideBar Hierarchical menus’ is closed to new replies.