Okay
  Public Ticket #669737
columns in custom php
Closed

Comments

  • Josh started the conversation

    I'm trying to create part of my theme custom in the page.php template. How can i create columns? I would like to place my content in 5 columns.


    Thanks.

  •  8,402
    Tahir replied
    Hey ,

    You need to set a custom class for that 5 column row and then divide the column into 6 columns . See screenshot: http://prntscr.com/8bh836 .

    After then hide the 6th column and increase the 5 column width using the below CSS .

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    @media (min-width: 768px) {    body .five-column.vc_row-fluid .vc_col-sm-2 {        width: 17.893617%;    }}body .five-column.vc_row-fluid .vc_col-sm-2:last-child {    display: none !important;}


    Thanks


    ThemeNectar Support Team