Hi, love the theme, but I have a problem. I’m using header style 8 because I like the ‘Travel blog’ demo header, but the height of the header doesn’t look like the demo. It’s so small and fixed at the top of the page. I would like more space, more white in my case, above and below. Thanks ind advance!
Hi,
Try this code, enter it in Theme panel->Custom Css (you can modify the margin values to what suits you best)
.td-header-style-8 .td-header-top-menu-full {
margin-top: 48px;
}
@media (min-width: 768px) {
.td-main-page-wrap {
margin-top: 48px;
}
}
Before – https://www.screencast.com/t/YARiAdR3vM
With code added – https://www.screencast.com/t/APMZJxIISn
Please let me know if this works for you
Thanks
Thanks, Simion. It works fine! But is it possible to fill the space between margins with color (white)? I’m not already sure that I want a full white background in all the page, but I’m sure that I want all the header block in white.
Thanks!
-
This reply was modified 9 years by
mmeida.
Hi,
In that case you need some modifications to the code with the same result, the only difference being that if you set a background color, it does not surround the header. This is the new code, remove the previous one
@media (min-width: 768px) {
.td-header-style-8 {
padding-top: 48px;
padding-bottom: 48px;
background-color: white;
}
.td-header-style-8 .td-header-sp-logo {
top: auto;
}
}
Result – https://www.screencast.com/t/H9bCFdGK
Please let me know if this works for you
Thanks
