I want the mobile part of the copyright to stay down, not up.

Home Forums Gillion Theme I want the mobile part of the copyright to stay down, not up.

Home Forums Gillion Theme I want the mobile part of the copyright to stay down, not up.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • flapsclub
    Participant

    Hello there,

    I want the mobile part of the copyright to stay down, not up. How can I set this up. So I want you to keep footer down, at bottom.

    Thanks,

    flaps.club is my website.

    Attachments:
    You must be logged in to view attached files.

    Hi @flapsclub,

     

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

     

    You can achieve it 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: 1025px){
    .sh-footer .sh-copyrights .sh-table {
        display: flex;
        flex-direction: column;
    }
    
    .sh-footer .sh-copyrights .sh-table-cell:first-child {
        order: 2;
    }
    .sh-footer .sh-copyrights .sh-table-cell:last-child {
        order: 1;
    }
    }

     

    Best regards,
    Shufflehound team

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