No space between header and article, why?

Hello guys,

I cannot find why is there no space between the header and the article (title). I joined a screenshot of what I mean http://oi66.tinypic.com/e9u1ap.jpg

The website is the following: http://blog.biobizz.com/

Thanks in advance!

Comments

  • Hi,
    this is because you have choosen the fixed hear style and all the content goes under it.
    Please try changing the minimalist option in theme options>header.
    thanks
  • edited March 2018
    Thank you very much.
    Now I have a big space between the header and the title. I have tried this following code in the CSS but nothing change. Do you know how I could fix this please?
    .single-post .section-post-header {
    display:none;
    }
  • Try using this css
    body:not(.template-slider) #Header {
    min-height: 65px !important;
    }
    thanks
  • Super this works great, but now I get a space between the header and my revolution slider on the homepage :/

    It seems that the bigger the min-height, the bigger the space between the header and my revolution slider gets
  • Are you using minimalist without header space setting in theme options>header?
    Combined with the css I gave you it should work. Please check that and let us know.
    thanks
  • Yes, I am using minimalist without header space setting in combination with the CSS you gave me.

    It works for my revolution slider on the homepage, but then I get no space between the blog article title and the header. So, I tried to change the min-height but then I get a space between my space between the header and my revolution slider on my homepage.
  • You can also add this css to manage the height of the header on all pages besides the home page.
    body:not(.home) #Header {
    height: 125px !important;
    }
  • Super, this worked like magic. Thanks for your support!
Sign In or Register to comment.