Hi there,
Please could you help remove big spaces in menu ( full logo on top)
URL: http://www.viralbae.com/home
Thanks!
Hello,
I’m not sure exactly what white space you mean to remove but i assume it’s the one under the logo
You can use this custom css to remove some of the space:
.page-id-38 .td-header-style-9 .td-logo-wrap-full {
min-height: 70px!important;
}
.page-id-38 .td-header-menu-wrap-full{
height:0!important;
}
Thanks.
Thank you Bogdan. That code provided the exact fix.
But I see two more issues with full logo on top option (Menu)
i) while scrolling in desktop, the logo is getting left-aligned. Ideally it should be in middle.
ii) Full logo on top option is to display only logo I believe. But I still see mobile menu icons with empty options nothing other than CLOSE link. It should be hidden completely.
Kindly advice.
Hello,
1) You can use this css for the desktop version:
.td-main-menu-logo img{
margin-left:128%!important
}
You can use the same method to apply it to the tablet and mobile version of your website.
2)You can hide it using this code:
.td-header-menu-wrap-full{
display:none!important;
}
Thanks for your reply Bogdan.
First code was just perfect whilst still have trouble.
Screenshot attached:-
http://www.screencast.com/t/hWNVHTDyGSc
While scrolling in mobile, the logo is not displayed. Also the gradient border is getting disappeared.
I want to hide only mobile menu option.
PS: Is there a way I could get that gradient border below my Block 12 in home page as well.
ie: http://www.viralbae.com/home
Thanks!
Hi,
Please remove the second code and replace it with this one:
.td-icon-mobile{
display:none!important;
}
Regarding the gradient border, you already have it in desktop and mobile:
http://screencast.com/t/iKWk0c0nu – http://screencast.com/t/rKL9qdqYa8E
Thanks.
Hello George,
Unfortunately if i remove the white space from the mobile version, you will no longer have the scrolling logo. It is defined in those white spaces under the main logo.
You could use this code and give up the scrolling logo for the mobile version:
@media (max-width: 767px){
.td-header-menu-wrap-full{
display:none
}
.td-main-page-wrap{
padding-top: 5px!important;
}
}
result: http://screencast.com/t/pI1XSwdlm
Unfortunately it’s either white space or no scrolling logo. This is how the menu is set up.
I hope it helps
Thanks.