Remove would-be subheader space

I disabled the subheader but was left with all of this extra space! How can I remove it? Thanks

Comments

  • Here you go, try this To remove this section, please turn on "Header | Minimalist" option under Theme options > Header & Subheader > Header section.
  • Ohh. Thank you! That took out nearly all of that space. Any suggestion for the last bit?
  • edited December 2015
    Try Global> Header Sub Header> Sub header > then select Hide Breadcrumbs, Hide Sub Header

    See if that works
  • Hmmm, nope. They were already checked to be hidden.
  • Or Header Sub Header> Header > Make sure sticky white header is turned off, I know its one of them just can't remember which one
  • if push comes to shove this may work in your custom css

    #Content {
        padding-top: 0;
        width: 100%;
    }

  • Thanks for the help! Just to check, I went to page edit, options, and switched Content | Remove Padding and that did it.

  • I'm having the same problem, but in the footer. You can see it here: http://www.basiccon.org/ 

    Any thoughts on how to remove that? I tried using the css you gave and changing it to padding-bottom, but that didn't work.
  • @takamineman What's wrong with your footer exactly? We did checked your site because there is no footer.
  • Thanks for your response. Upon further inspection I realized it's only adding the extra white space on the home page, so it must not be because of the footer but I still can't figure out how to remove it. I've checked to make sure there's no extra content in the code for that page, but I might have missed something. Any thoughts?

    I also can't figure out where to change the background color for the sidebar. I set this up using the demo content for the Library template and I feel like I've looked everywhere for how to change the color with no luck.
  • @takemineman But where this empty space is? Because all we see is http://pasteboard.co/4TVbSfF.png

    But sidebar background can be changed with custom css only. You can get this css from http://forum.muffingroup.com/betheme/discussion/473/sidebar-background-colour-and-line-removal-widget-after
  • Did you scroll down? This is what I'm seeing: http://pasteboard.co/4XSHP8U.png

    Also, I copied in the code from the other post about the sidebar and changed the color to #222222 and as you can see it didn't work.
  • Yes, we tried to scroll with no result. We tried on 5 different computers with different browsers and nothing. We did checked your code and all we found you can check on http://pasteboard.co/5WY0Jrg.png (it's empty div element that comes with VC plugin). So maybe that's the reason why you get this empty space.

    In accordance to 2nd question, could you tell us where you have the sidebar exactly? Because all we see on your site is "Creative header always open" on side and nothing else.
  • Very interesting. I just tried it on other browsers/computers and could not replicate the issue either. So, it must be a weird glitch in the browser I'm working on.

    As far as the sidebar goes, once I realized that what I was calling the sidebar the theme calls a Creative header I was able to add the following CSS and change the background color:

    #Header_creative {
    background-color: #222222 !important;
    }

    Thanks for all your help working through this!

    Is there a way to add css for changing the size and color (or hover color) of the social media icons in the creative header?
  • Also, is there a way to hide the lines between the menu items?
  • Yes, it is possible to change the size and colors for social icons. You can change them with extra css:
    #Header_creative .social li a { color: #000 !important; font-size: 20px !important; }
    #Header_creative .social li a:hover { color: #000 !important; }
    Referring to menu items, which lines you mean? Because we do not see any on your site.

  • I'm referring to the lines in between the items in the creative header (home, about, speakers & artists, etc.)
  • OMG, this line is nearly invisible :) Anyway, we found it. You can remove it with the following css:
    #Header_creative #Top_bar .menu > li > a span { border-bottom-width: 0 !important; }
  • Haha, maybe you need a better display ;) 

    Thanks!
  • We were checking with MacBook PRO even. Probably need a new glasses :)
Sign In or Register to comment.