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
any ideas…
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
Thanks :-)