How to add 3/4 and 2/3 width elements
-
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.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to add 3/4 and 2/3 width elements’ is closed to new replies.