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].
Hi,
The Blog title is always displayed in the header. How do I get rid of it?
Thank you!
Hi Andre. Are you referring to the support text, Call me maybe? That can be changed or removed under Appearance > Theme Settings > Home.
Hi again,
No, unfortunately not. If I go to Appearance > Customize > Site Title & Tagline and enter a Site Title it shows up in my header.
I made the header transparent because I use a background image with our Logo. Is there an option or CSS-tweak to solve this?
Maybe it would be a nice idea to make a checkbox to show or hide the title (like the standard wp-themes have) ;)
The downside with that is you now don’t have a clickable logo. The following CSS will allow you to upload a full width 1080px logo, assuming you’re running the boxed site layout:
/* Full header logo */ header#masthead { padding: 0 !important; } header#masthead hgroup { padding: 0 !important; } header#masthead hgroup .logo img { width: 1080px; } .main-navigation { margin: 0 !important; } body.responsive header#masthead hgroup .support-text, body.responsive header#masthead hgroup #header-sidebar { display: none !important; }If you want to stick with your setup then use:
/* Hide Logo */ header#masthead hgroup .logo { display: none !important; }