white showing above header on all pages except slider pages. Using Divi theme.
Can you let me know what sepecific white area? a marked screenshot will help me understand.
Thanks
HI Rui
Please see attached screenshot
Sorry could not attach screenshot. It is the white panel running whole width at top of web page which runs behind the logo and the word MENU. It shouldn’t be there.
Thanks.
This isn’t related with WP Mobile Menu, this is caused by this css.
@media (max-width: 767px){
body.et_fixed_nav.et_secondary_nav_two_panels #main-header, body.et_non_fixed_nav.et_transparent_nav.et_secondary_nav_two_panels #main-header {
top: 58px;
}
}
if you change it to this one below I think it will be fine.
@media (max-width: 767px){
body.et_fixed_nav.et_secondary_nav_two_panels #main-header, body.et_non_fixed_nav.et_transparent_nav.et_secondary_nav_two_panels #main-header {
top: 30px!important;
}
}
Give it a try.
-
This reply was modified 7 years, 6 months ago by
Rui Guerreiro. Reason: typo in the second css rule
Will close the topic for now.
Let me know if you need further help with this.