Okay
  Public Ticket #3207320
Footer separator options
Closed

Comments

  • tomtompdx started the conversation

    Hey gang . I was wondering is there a way to have the divider in the footer widget area be vertical like this instead of horizontal? Or could that just be an image or something? Thank you!


    7985006457.png
  •  1,643
    Judith replied

    Hi there,

    Thanks for keeping in touch.

    Please send us logins to access your website as it is on maintenance mode so that we can provide possible css.

    Thanks.

  • tomtompdx replied

    How would I send that? 


  •  8,403
    Tahir replied

    Hey Again,

    Nevermind the login credentials,

    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[data-cols="5"] .container .row >.col:before {
        border-left: 2px solid #cccccc75;
       height: 100%;
        content: '';
        position: absolute;
        left: -20px;
        flex-direction: column;
        align-items: stretch;
    }
    #footer-widgets[data-cols="5"] .container .row >.col {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    body #footer-outer .row {
        display: flex;
        align-items: stretch;
    }

    Thanks


    ThemeNectar Support Team