• I needed to add 3/4 and 2/3 width elements. It’s really easy and thought I’d share:

    1. in back/tpl_forms.php add after line 43:

    <option value="5" {{#divisions_2_3}}selected="selected"{{/divisions_2_3}}>2/3 (Two Thirds)</option>
    <option value="6" {{#divisions_3_4}}selected="selected"{{/divisions_3_4}}>3/4 (Three Quarters)</option>

    2. in front/ctrl_shortcode.php add after line 38:

    case 5:
         $classes .= ' jzzf_two_third';
         break;
    case 6:
         $classes .= ' jzzf_three_quarter';
         break;

    3. in front/themes/1.css add after line 66:

    div.jzzf_two_third { width: 259px; }
    div.jzzf_three_quarter { width: 292px; }

    That’s it.

    https://www.ads-software.com/plugins/jazzy-forms/

Viewing 1 replies (of 1 total)
  • Thread Starter superpotion

    (@superpotion)

    Sorry, this doesn’t work – I’m still missing a bit. I’ll post and update when I have the time to find it.

Viewing 1 replies (of 1 total)
  • The topic ‘How to add 3/4 and 2/3 width elements’ is closed to new replies.