Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author WebHunt Infotech

    (@webhuntinfotech)

    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

    Thread Starter blackbroomfarm

    (@blackbroomfarm)

    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.

    Theme Author WebHunt Infotech

    (@webhuntinfotech)

    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

    Thread Starter blackbroomfarm

    (@blackbroomfarm)

    It worked!! Thank you so much!!

    Theme Author WebHunt Infotech

    (@webhuntinfotech)

    Most Welcome !

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Logo Squished’ is closed to new replies.