Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #862603

    mhbmartijn
    Participant

    Hi my mailchimp width is not filling up my column since I have put on marginless columns.
    Can you help me with this? Thanks!

    #862604

    mhbmartijn
    Participant
    This reply has been marked as private.
    #863270

    Friech
    Moderator

    Hi There,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    
    #x-section-3 .x-container .x-column {
    	float: left !important;
    }

    Hope it helps, Cheers!

    #863724

    mhbmartijn
    Participant

    It does!! Can you maybe shortly explain this, because I would like to understand what went wrong and how this code is a solution. Thank you so much if you would take time for this!

    #864262

    Rue Nel
    Moderator

    Hello There,

    Once you set the row setting to have a marginless columns, all the columns under that row will display as a table cell and no longer be floated left. Since the mailchimp form is being displayed with a column container, this also follows the marginless column settings. The code overrides the marginless columns settings and make it floated to the left thus make it occupy the whole column.

    Hope this explains briefly.