• Resolved jennagarvin5

    (@jennagarvin5)


    I am trying to adjust the header area for this site. It has some extra white space above the header graphic that I don’t want to show. Could you tell me how to fix that?
    Thank you!
    Jenna

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Vinod Dalvi

    (@vinod-dalvi)

    I hope you are well today and thank you for your question.

    You can remove it by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Additional CSS

    .container.logo-wrapper {
        display: none;
    }

    Best regards,

    Thread Starter jennagarvin5

    (@jennagarvin5)

    Thank you so much Vinod! That worked perfectly! One last question, is it possible to leave the padding for mobile only?
    Jenna

    • This reply was modified 6 years, 1 month ago by jennagarvin5.
    • This reply was modified 6 years, 1 month ago by jennagarvin5.
    Theme Author Vinod Dalvi

    (@vinod-dalvi)

    is it possible to leave the padding for mobile only?

    To achieve that please change above custom CSS code as following.

        @media screen (min-width: 769px) {
    .container.logo-wrapper {
        display: none;
    }
    
        }
    Thread Starter jennagarvin5

    (@jennagarvin5)

    That seems to have fixed mobile but the desktop has too much white again. Sorry! and thanks for the help.

    Theme Author Vinod Dalvi

    (@vinod-dalvi)

    Then please try removing screen word from above CSS code as displayed below.

    @media ( min-width: 769px) {
    .container.logo-wrapper {
        display: none;
    }
    }
    Thread Starter jennagarvin5

    (@jennagarvin5)

    Worked great! thank you!

    Theme Author Vinod Dalvi

    (@vinod-dalvi)

    You are most welcome, I’m glad I was able to help you in this matter. There is no obligation but by your kind words I wonder if I could trouble you to leave a review based on this experience here:

    https://wordpress.org/support/theme/ruby/reviews/

    I’d really appreciate that. 🙂

    And if i can be of any further assistance please don’t hesitate to ask.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Adjust header area height’ is closed to new replies.