Customize copyright bar

Home Forums Jevelin Theme Customize copyright bar

Home Forums Jevelin Theme Customize copyright bar

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    RESOLVED Posts
  • cjahn
    Participant

    Hi,

     

    I am trying to customize the height of the copyright bar via custom CSS.

     

    In desktop view it works via

     

    .sh-copyrights-style2 {
    max-height: 45px;
    padding: 0px;
    }

     

    But in mobile view it doesn’t.

    I have tried

    .sh-copyrights {
    padding: 10px;
    }

     

    and

     

    @media (max-width: 900px) {
    .sh-copyrights {
    max-height: 45px;
    }
    }

    but no success.

    Any help is appreciated!

    Solution for this topic

    Hi @cjahn,

     

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

     

    You can reduce its height on mobile by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    @media (max-width: 900px){
    #page-container .sh-copyrights {
        padding: 10px 0;
    }
    }

     

    Best regards,
    Shufflehound team

    cjahn
    Participant

    Thanks, works!

    You are most welcome here 🙂

Viewing 4 posts - 1 through 4 (of 4 total)