Padding/margin between menu bar and content
This only seems to be an issue when i use the transparent header template.
This is the default custom css that came with the cleaner theme:
h4 { font-weight: 700; }
.lists_4 .circle { border-color: #9cd8ff; color: #2e96db; }
.list_item.lists_4 .list_right { padding-top: 0px; }
.Latest_news h3.title { margin-bottom: 30px; }
.section-border-bottom { border-bottom: 1px solid rgba(128, 186, 217, 0.25); }
.section-border-top { border-top: 1px solid rgba(128, 186, 217, 0.25); }
/* Top bar */
#Top_bar .menu > li > a span:not(.description) { border: 0; }
#Top_bar { background: rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.4); top: 0; }
/* Subheader */
body:not(.template-slider) #Header { min-height: 0px; }
#Subheader .title { margin-bottom: 40px; }
@media only screen and (max-width: 767px) {
body:not(.template-slider):not(.header-simple) #Header {
min-height: 170px;
}
}
/* Footer */
#Footer .widget > h4 { margin-bottom: 25px; }
/* Button */
a.button_large .button_label { font-size: 17px; padding: 20px 30px; }
a.button_large .button_icon { padding: 20px 16px; }
/* Sidebar */
.widget-area:before { background: none; }
Thanks
Comments
you set transparent header and this is how it supposed to look like. It's the whole sense of being transparent. So if you don't like how it looks like, or you should switch to another header type, or use extra css to move the content down:
body:not(.home) #Content { margin-top: 70px !important; }
issue resolved.