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].
I want to remove the shadow and want to change the colour. I think it’s just a simple thing but I can not find it I am happy if anybody has an idea. Here is a screenshot http://www.echtnet.de/druckdaten/screenshot_02.jpg
Hi Joachim
Thanks for reaching out. These settings are available in Vantage Premium under Appearance > Customize. If you’d like to check that offering out, head to Appearance > Vantage Premium.
If you’d like to stick with Vantage Free, insert the following into a Custom CSS plugin like Simple Custom CSS or Jetpack Custom CSS:
/* Vantage Remove Image Shadow and Rounding */ .entry-content img { -webkit-border-radius: 0 !important; -moz-border-radius: 0 !important; border-radius: 0 !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important }And to modify the menu:
/* Vantage Menu Colors */ .main-navigation { background: #343538 !important; } .main-navigation a { color: #e2e2e2 !important; } .main-navigation ul li:hover > a { background: #00bcff !important; color: #FFFFFF !important; }Adjust the menu colors as required.