• Hello,

    I would like to inquire about the possibility to set the default width for the columns. Now if I add a 6-column row the default widths are 33 – 33 – 33 percent. I would like to set it to 40-10-10-10-10-10-10 percent for a 6 column row
    Is it possible to modify the default settings for that? I was able to modify only row by row and I would like to add at least 15-20 rows with multiple column (with usually 3 or 4 columns) settings.

    Thank you for your help in advance and I am looking forward to hear from you soon!

    Keep up the great work!

Viewing 1 replies (of 1 total)
  • Plugin Author WebHolism

    (@webholism)

    Hi @joeldault,

    Thank you for using the plugin and thank you for bringing this issue to our attention.

    One way to implement what you need is to override the CSS associated to the elements you want to modify.

    For example if you had 6 columns on the second row of your form you could try something such as:

    .gfmc-row-2-col-1-of-6 {
    width: 40% !important;
    }
    .gfmc-row-2-col-2-of-6,.gfmc-row-2-col-3-of-6,.gfmc-row-2-col-4-of-6,.gfmc-row-2-col-5-of-6,.gfmc-row-2-col-6-of-6 {
    width: 10% !important;
    }

    The row number will need to be modified for each row that you create that needs deviation from the standard column division.

    Please try putting the code above into your theme style.css or similar, and please let us know the outcome.

    Many thanks, and wishing you a great day.

Viewing 1 replies (of 1 total)
  • The topic ‘Default Columns Width’ is closed to new replies.