If you like our themes and support, please SHARE our website! https://theme-sky.com/wordpress-themes/

Okay
  Public Ticket #1045878
Footer Columns
Closed

Comments

  •  2
    Diego Alejandro Quintero started the conversation

    How do I get the 4 columns of the footer? thanks!

  •  567
    Stormit replied

    Hi Diego,

    You just set column by using Visual Composer. 

    If the Visual Composer editor does not show up in Footer Block, you will go to Visual Composer > Role Manager. You need to enable Visual Composer for the ts_footer_block post type.

    For more information about managing footer, please read our documentation http://demo.theme-sky.com/documentation/sanzo/#footer

    Best regards,

  •  2
    Diego Alejandro Quintero replied

    Great!
    I would like the columns there created in the responsive version of mobile devices not to be placed one under another, I would like to keep at least 2 or 3 columns followed in the same way as seen in the web version, but the responsive sends the columns one under another , What I can do? Thank you!

  •  567
    Stormit replied

    Hi Diego,

    You edit row which contains 3 columns as my screenshot and add an extra class named custom-footer-responsive

    And then you add the custom css below into Theme Options > Custom CSS/JS tab > Custom CSS Code field

    @media only screen and (max-width: 767px){
        .custom-footer-responsive .vc_col-sm-4{
            width: 33.33333333%;
            float: left;
        }
    }
    

    Best regards,