Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Hello , thanks for beautifull Vantage theme! I have a question, i want to have 2 menus, one of them – on the left side, now i use custom menu using page builder custom menu widget. I must add it on every page. is any other way to add menu on the left, without difficult coding ? :) And if custom menu widget is the best solution for this theme, how to change its appearance, where style file is located ? :) Thanks !
my left menu picture http://www21.zippyshare.com/v/25500110/file.html

I’m interested in exactly the same answer…. I have added on every page, but this could be an updating nightmare… I’d also like to see how you can change the colour/style of the side menu (it goes blue/hyperlink), and also make it +- open/collapse like a Windows file browser.
Must say as a novice, it is a really good theme which I have been able to bring online very quickly.
Hi Vladimiras and Des
It’s possible, using the following inserted under Appearance > Custom CSS (Vantage Premium) or into your own Custom CSS plugin, to switch the Vantage sidebar from right aligned to left aligned:
/* Vantage Display Left Sidebar */ .blog #primary, .single #primary, .default #primary, .page #primary { float: right; } .blog #secondary, .single #secondary, .default #secondary, .page #secondary { float: left; } .home #primary, .page-template-templatestemplate-full-notitle-php #primary { float: none; }It’s also possible to tweak the Custom Menu widget as follows:
/* Vantage Sidebar Custom Menu */ #secondary .widget.widget_nav_menu ul { list-style: none; margin-left: 0; } #secondary .widget.widget_nav_menu ul li { padding-left; 0; } #secondary .widget.widget_nav_menu ul li a { color: #dd3333: } #secondary .widget.widget_nav_menu ul a:hover { color: #2b1100; }Let me know how that goes.