Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2353455
CF7 Columns
Closed

Comments

  • umpro started the conversation

    Hello,

    I would like to have two columns for CF7. I used row and col-md-3, but it does not work. What should I do?

    Thanks.

  •  2,699
    PenciDesign replied

    Hi,

    Can you tell me more about your issue? And show me URL for your issue to I can take it a look on this help you. 


    Best Regards,

    PenciDesign

  •   umpro replied privately
  •  2,699
    PenciDesign replied

    Hi,

    Please try do following steps:

    1/ Use this markup for all paragraphs on the contact form with class like that:

    <p class="penci-col2">
    Content for column 1
    </p>
    <p class="penci-col2">
    Content for column 2
    </p>
    

    2/ Add more this code to Customize > Custom CSS:

    @media only screen and (max-width: 479px){
    .wpcf7-form .penci-col2{ width: 48%; margin-right: 2%; float: left; }
    .wpcf7-form .penci-col2:nth-child(2n+2){ margin-right: 0; }
    .wpcf7-form .penci-col2:nth-child(2n+1){ clear: both; }
    }

    Best Regards,

    PenciDesign

  • umpro replied

    Thanks. You can close the ticket.

  •   umpro replied privately
  •  2,699
    PenciDesign replied

    Hi,

    Yes, because the code I given for you is for 2 columns - not 4 columns.

    If you want to do that, you can try with the code like this:

    <div class="penci-wrapper-col">
    <div class="penci-col4">
    Content for column 1
    </div>
    <div class="penci-col4">
    Content for column 2
    </div>
    <div class="penci-col4">
    Content for column 3
    </div>
    <div class="penci-col4">
    Content for column 4
    </div>
    </div>
    

    And add more this code to Customize > Custom CSS:

    @media only screen and (min-width: 480px){
    .penci-wrapper-col .penci-col4{ width: 23.5%; margin-right: 2%; float: left; }
    .penci-wrapper-col .penci-col4:nth-child(4n+4){ margin-right: 0; }
    .penci-wrapper-col .penci-col4:nth-child(4n+1){ clear: both; }
    }
    @media only screen and (max-width: 479px){
    .penci-wrapper-col .penci-col4{ width: 48%; margin-right: 2%; float: left; }
    .penci-wrapper-col .penci-col4:nth-child(2n+2){ margin-right: 0; }
    .penci-wrapper-col .penci-col4:nth-child(2n+1){ clear: both; }
    }

    Best Regards,

    PenciDesign

  •   umpro replied privately
  •  2,699
    PenciDesign replied

    Hi,

    I see you're using Elementor, why you don't use columns from Elementor?

    Please check more about this here


    Best Regards,

    PenciDesign