Hello,
We created a new home page, that is based on a duplicate of the existing one. It shows a white line under the menu bar which is not explicitly coded. The old home page, which is more or less identical as far as layout elements go doesn’t show that line. I looked in the inspector but couldn’t find anything. How can we remove that white line? I am adding the links to both pages and user credentials if you want to get into wp-admin.
Hey jim-cp,
Thank you for the inquiry.
The border is applied by this css code:
#header {
border-bottom: 2px solid #ebebeb !important;
}
You can remove the code or override it in the Quick CSS field:
#top #wrap_all .header_color.av_header_transparency {
border: 0 !important;
}
Best regards,
Ismael
I found the code in style.css, they had the homepage excluded with its ID. That took care of it with the new page too.
Thank you so much!