Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #95411
    Kbampfield
    Participant

    Hi,

    How do I get rid of white space above image header?

    I just want the black stroke for social media icons then the header image with no white space.

    Please advise.

    #95433
    Mahesh
    Keymaster

    @kbampfield: Please post in your site URL.

    Regards,
    Mahesh

    #95490
    Kbampfield
    Participant
    #95509
    Mahesh
    Keymaster

    @kbampfield: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #masthead {
        display: none;
    }

    Regards,
    Mahesh

    #95535
    Kbampfield
    Participant

    Thank you that worked well.

    #95610
    Mahesh
    Keymaster

    @Kbampfield: Glad to know your issue is resolved. Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    #97926
    3J
    Participant

    Hi, I also wanted to remove the white space that normally contains the title from above the image header. Adding in

    #masthead {
    display: none;
    }

    to the custom CSS box worked, but the mini menu that normally appears when the main menu disappears for smaller windows or or mobile devices is also gone. Is there someway to get the mini menu to appear on the bar at the top with the social media icons, or some another location?

    Thanks in advance,
    3J

    #97937
    Mahesh
    Keymaster

    @3j: Please post in your site url.

    Regards,
    Mahesh

    #97983
    3J
    Participant
    #98020
    Mahesh
    Keymaster

    @3j: Please use the following CSS instead:

    @media screen and (min-width: 991px) {
        #masthead {
            display: none;
        }
    }

    Regards,
    Mahesh

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘How to get rid of space obove image header’ is closed to new replies.