Okay
  Public Ticket #2685636
Change footer columns to 1/2+1/4+1/4
Closed

Comments

  • larissa23 started the conversation

    Hi, is there a way to change footer columns to 1/2 + 1/4 + 1/4?

  •  8,402
    Tahir replied

    Hey Again,

    You only seem to have the 2 Column Footer Option active: 

    9867211299.pngClick To Open Larger Image.

    Please enable the 3 Column Option so we can write up custom css for the specific column widths.

    Thanks 


    ThemeNectar Support Team 

  • larissa23 replied

    Hi Tahir - I have just changed that now.  I would love it if you can help.

  •  8,402
    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 .col.span_4:first-child {
        width: 49% !important;
    }
    #footer-outer .col.span_4 {
        width: 23.5% !important;
    }

    Thanks


    ThemeNectar Support Team 

  • larissa23 replied

    hi - thanks but then they are not responsive.  They do not respond and fall under each other on a mobile.

  •  8,402
    Tahir replied

    Hey Again,

    Use the Below Revised CSS

    /* below css would work on screen size larger than 1000px */
    @media only screen and (min-width: 1000px) {
        #footer-outer .col.span_4:first-child {
            width: 49% !important;
        }
        #footer-outer .col.span_4 {
            width: 23.5% !important;
        }
    }

    Thanks


    ThemeNectar Support Team