Okay
  Public Ticket #397979
Change footer columns relative sizes
Closed

Comments

  • Marcos Paulo started the conversation

    Hello,

    I would like to know if is possible to change the sizes columns in a of a two column footer widget area as exemplified in the image attached.

    Thanks!

  •  8,849
    Tahir replied

    Hey,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    #footer-widgets .col.span_6 {
        width: 66% !important;
    }
    
    
    #footer-widgets .col.span_6:last-child {
        width: 32% !important;
    }

    Thanks



    ThemeNectar Support Team 

  • Marcos Paulo replied

    Thanks

  • Emily replied

    Could I get the custom CSS to adjust the % spacing of a 3 column footer?

    The site is https://workersolidarity.ca/home/

  •  8,849
    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-widgets .span_4 {
        width: 26%;
    }
    #footer-widgets .col {
        margin-right: 7%;
    }

    Thanks


    ThemeNectar Support Team