Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #695994

    How do I remove the Logo from the top header of my site?

    #696135

    Hey Guilherme,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top .logo {
        display: none;
    }
    

    Best regards,
    Jordan

    #696156

    Yeah, that worked just fine.

    I have another problem. My main menu is on the left. The menu from enfold does not understand that and (aligned to the right) goes through the page. What can I do to fix it?

    #696157

    Sorry, missed this info

    #696216

    Hey!

    Can you please elaborate on the issue you are having? I checked your website but did not see anything odd.

    Cheers!
    Yigit

    #697302

    When, on enfold option, I set to be on the edge of the site, the menu itself goes through the site.

    If you want to try and see for yourself I’ll leave a link to the admin panel.


    @Edit

    Also, I want to know how can I remove the menu from showing up on mobile.

    • This reply was modified 8 years ago by Guilherme.
    #697325

    Hey!

    1- Can you please post a screenshot and show the issue? I still cannot understand, i am sorry.
    2- Please add following code to Quick CSS

    @media only screen and (max-width: 767px) {
    .sfm-no-mobile #sfm-sidebar {
        display: none!important;
    }
    .sfm-no-mobile.sfm-pos-left body, .sfm-no-mobile.sfm-pos-left #wpadminbar {
        padding-left: 0 !important;
    }}

    Regards,
    Yigit

    #709754

    Ok, that worked just fine. Now what I need is to remove the header completely from mobiles. How can I do it?

    #709792

    Hi,

    You can remove the header by adding this code to Quick CSS:

    #header {
        display: none;
    }

    You also might want to remove this black bar on top of your site, just add this on Quick CSS:

    #sfm-mob-navbar {
        display: none !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #709843

    I want to remove the header just for mobiles, not for desktops as well.

    And that black bar is my menu, I need to have that.

    #709847

    Hi!

    Please add following code to Quick CSS

    @media only screen and (max-width: 990px) {
    #header {
        display: none!important;
    }
    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 0 !important;
    }}

    Regards,
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.