Hello blackbroomfarm,
As we check your site, you set Logo Title instant of logo image.
Please set logo image and provide us screenshot. so we can check and resolved your issue.
Thank You
Oh, thank you, I’m sorry that I changed it after asking for assistance. I’ve put the logo back. The image is exactly 150×75, as recommended, but as you can see it still displays squished vertically.
Also — it seems that when I updated the Theme, the darker grey navigation bar across the top has returned. I got rid of this last year but it has been too long and I can’t remember how I removed it. I want the entire grey bar removed from all pages, please.
Hello @blackbroomfarm
Use below css rule in custom css editor
1. Fixed logo issue for desktop
@media only screen and (min-width: 992px){
.menu_button_mode:not(.header_on_side) #navy > li {
padding: 28px 0px;
}
}
#logo a img {
max-height: inherit;
}
2. Fixed logo issue for mobile
@media only screen and (max-width: 992px){
#navigation_bar {
min-height: 95px;
}
.mobile_menu_trigger {
top: 50px;
}
#main_nav.has_mobile_menu {
padding: 95px 0 0;
}
}
3. Hide top gray bar
section.content_section.page_title {
display: none;
}
Save all the changes
If you didn’t see any changes with any css use !important with those css rules
Thank You
It worked!! Thank you so much!!