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].
Is there a way, a function or something similar to change the way that the theme’s Custom CSS to override WordPress’s own Customize tools. I want to change the menu list items to have transparent backgrounds but WP Customize’s lower position in the page seems to be overriding my background-color: none I define in my Custom CSS.
Hi Hentai
Have you tried using !important override the Customizer styles?
/* Vantage Menu Opacity */ .main-navigation { background: rgba(255,0,0,0.3) !important; }OR
/* Vantage - Adjust color and opacity of drop down menu items and drop down menu hover */ .main-navigation ul ul { background: rgba(200, 54, 54, 0.5) !important; } .main-navigation ul ul li:hover > a { background: rgba(200, 54, 54, 0.5) !important; }