Can i completely remove the logo/header area?

Between the video that i have, and where the home button is, there is a thin black bar. Can i get rid of that? Technically, my text logo is there, but i have made the font transparent.

https://benjaminaproductions.com/demo-home/

Thanks!

Hey @benjaminasher,

Thanks for writing in! While you cannot completely remove the .x-logobar element with an option when the header is stacked as you have it now, you could certainly remove it physically via a child theme, or visually using some custom CSS (also via a child theme or using the theme’s built-in CSS editor).

To remove physically, you’d need to setup a child theme and find the proper view and update it’s markup. A detailed post on this entire process is found here:

If you wish to simply remove it visually using CSS, you can use the following CSS in a child theme or in the global CSS editor by launching the site builder, going to Theme Options, and then clicking the CSS icon in the skinny sidebar to the left of your screen:

.x-logobar {
  display: none;
}

Hopefully this helps to point you in the right direction…cheers!

Huge help - thanks!

You’re welcome.