Hi, I am using the Enfold theme with the Flat Business Demo. I would like to move the secondary navigation further down the page so it lines up with the top of the logo. Also I would like to remove the horizontal line at the bottom of the secondary nav section. Please see the attached image.
Thanks!
Hey ScottYetter,
Please try the following in Quick CSS under Enfold->General Styling:
#header_meta {
position: absolute;
right: 0;
border-bottom: 0;
padding-top: 30px;
}
Best regards,
Rikard
Hi Rikard, Thanks, that mostly worked. As you will see in the attached image, part of the line is still there, any thoughts?
I also noticed that this has made changed the view in mobile. Now in mobile the logo is cut off. Can we move the Secondary nav to the top (above the logo) in mobile view only?
Please see the 2 attached images:
Thank you!
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
@media only screen and (max-width: 767px) {
#header_meta {
width: 100%;
padding-top: 0;
}
#header_main {
padding-top: 31px;
}
}
Best regards,
Yigit
That looks perfect in mobile view, thanks. I am still seeing the horizontal line under the secondary menu in desktop view. Please see the attached screenshot. To be clear, I would like to remove the line in both the desktop view and the mobile view. Is there a way to do this?
Thanks!
Hi!
Please add following code to Quick CSS as well
#top .av_header_transparency #header_meta {
border: none;
}
Regards,
Yigit
Perfect, thank you!