-
AuthorPosts
-
February 23, 2016 at 11:05 am #808887
Hello. On all pages except Blog and Home, there first section of content is starting really high and, in some cases, touching the navbar. I’ve attached some images.
You can see this on betasite.latinomatters.com/contact
There is little space between nav bar and first section.
Thank you.
Eric
February 23, 2016 at 3:13 pm #809226Hi there,
You can add this under Custom > CSS in the Customizer.
.error404 .x-header-landmark { margin: 100px auto 0; text-align: center; } .page #x-section-1 { margin-top: 40px !important; }
Hope that helps.
February 23, 2016 at 5:23 pm #809358This reply has been marked as private.February 24, 2016 at 12:58 am #809776Hi There,
Sections’ margins can be setup on the cornerstone section inspector.
The issue here is the navbar-wrapper is set to height of 0; that is why the first sections are pushing themselves above, behind the navbar. Can you check what value you have on the Customizer’s Navbar Top Height option? That should be 90.
In the meantime you can add this custom css instead.
body.x-navbar-fixed-top-active .x-navbar-wrap { height: 90px; }
If you find there is a lot of space above the headline. You can apply a class man to it.
e.g
<h2 class="man">Contact Us</h2>
Hope it helps, Cheers!
February 24, 2016 at 7:49 am #810212This reply has been marked as private.February 24, 2016 at 7:55 am #810227I have the same Problem.
How can I hide the white Background with “home” in it, that there is no space between Menu and first Column?
Site is:
http://www.gerrithoss.deFebruary 24, 2016 at 8:33 am #810287Hi @plattbaum,
Please try adding the following CSS under Customize > Custom > CSS:
.home #top > .x-container.max.width.offset { margin-top: 0; } .home header.x-header-landmark { display: none; }
Hope it helps 🙂
February 24, 2016 at 8:44 am #810298Yesss!
Thank You
February 24, 2016 at 9:25 am #810349Nothing for me. I am sure it has to do with the fact that I have a transparent header.
I have it set at 90. This adds more than 40px to the homepage also, though..error404 .x-header-landmark {
margin: 100px auto 0;
text-align: center;
}.page #x-section-1 {
margin-top: 40px !important;
}Not sure what else I can try to get the homepage navbar to be transparent and the rest to be normal.
Thanks.
February 24, 2016 at 9:48 am #810398Hi Eric,
Try adding the following CSS under Customize > Custom > CSS:
@media (min-width: 980px){ .home #x-section-1 { margin-top: 0 !important; } }
Hope it helps 🙂
February 24, 2016 at 10:46 am #810490It did correct that issue. I will just have to play with NavBar Height and use gaps on the inside pages to push the content down a little bit.
Thank you.
February 24, 2016 at 10:56 am #810507Meant to add if there is a way to remove the border that comes around blogs and sections when it shrinks down to mobile.
Screenshot attached.
Thanks,
E-
February 24, 2016 at 2:28 pm #810790Hi Eric,
Please add this code in the Customizer:
@media (max-width: 979px) { box-shadow: none; }
Hope this helps.
February 24, 2016 at 4:30 pm #810961Unfortunately, that didn’t work.
February 24, 2016 at 5:47 pm #811047Hi there,
Thanks for updating the thread! Sorry about that, please use this CSS.
.entry-wrap { box-shadow: none; }
Hope this helps – thanks!
-
AuthorPosts