Okay
  Public Ticket #3123276
Margin of footer
Closed

Comments

  •  3
    Byron started the conversation

    Hello Themenectar team,

    Can you guide me to edit the margins of the footer. You see a lot of space at the bottom and between widgets. I have looked for the form but I cannot find the line.

    Attached the image for mobile and desktop.

    Thanks.


    Attached files:  footer_mobile.jpg
      footer_desktop.jpg

  •  8,393
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #footer-outer .row {
        padding: 25px 0;
    }
    #footer-outer .widget {
        margin-bottom: 0px;
    }
    @media only screen and (min-width: 1px) and (max-width: 999px) {
        #footer-widgets .container .col {
            margin-bottom: 20px;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  3
    Byron replied

    Thanks Tahir, it works very well !.