Okay
  Public Ticket #1876374
Footer
Closed

Comments

  • c3sandiego started the conversation

    Is there a responsive setting somewhere or css that I need to enter to get our footer to stack on mobile? As you can see in the image, it's very squished as is.

    Thank you!

  •  8,996
    Tahir replied

    Hey Again,

    Your custom css is setting the display to flex and causing the issue. 

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 1000px) {
        body[data-footer-reveal="1"][data-footer-reveal-shadow="large_2"] #footer-outer .row {
            display: block !important;
        }
    }

    Thanks


    ThemeNectar Support Team