Betheme, hide logo but keep the position of responsive menu

Hello, i removed the logo with #Top_bar .logo { display: none; }
as you suggested in an older post.

buh when doing so, the hamburger menu in responsive mode goes right on the sliders, and it becomes almost invisible (it's there ,but it's hard to notice) see attachment.

site is www.allacasella.it.

it has a lot of custom css but even with only the css line above the issue is still present.

how do i keep the logo hidden but the menu in the white part of the site above the slider? thanks!
image

Comments

  • edited April 2020
    well.. i ended up doing something like this: using a transparent 1px png for the logo, then this css.

    any better solution? maybe more comatible with future versions of the theme?

    thanks

    #Top_bar #logo { height: 85px; padding: 5px 0px;}
    #Top_bar .logo { display: none; }

    @media (max-width:767px){
     #Top_bar .logo {
    display:inline !important;
    }
    #Top_bar .logo #logo, #Top_bar .logo .custom-logo-link {
        padding: 0 !important;
    margin: 0px 0px 0px 0px; !important;}
    #Top_bar #logo {
        height: 0px;
        padding: 5px 0px;
    }
    #Top_bar a.responsive-menu-toggle {
        display: inline;
        position: absolute;
        right: 20px;
        top: 50%;
        margin-top: -47px;
        width: 34px;
        height: 34px;
        text-align: center;
        border-radius: 3px;
        z-index: 200;
    }
    }
  • Hello,
    So, 'removing' logo is only possible with your workaround, uploading the 1x1 png with transparency inside.
    This will be the best solution in my humble opinion, our theme is not ready for this kind of modifications.
    You would have to use the Muffin Header Builder for this kind of header layouts.

    Thanks
Sign In or Register to comment.