Changes between Version 19 and Version 20 of DeveloperGuidelines/Themes
- Timestamp:
- 11/30/14 09:40:38 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Themes
v19 v20 51 51 52 52 === Customizing Form Design by Theme === 53 By default, all form fields have their uniq divs like that <div class="form-row row" id="org_organisation_phone__row">.In this example, we will put Organization Home Country field next to Organization Type field.53 By default, all form fields have their uniq divs like that {{{<div class="form-row row" id="org_organisation_phone__row">}}} In this example, we will put Organization Home Country field next to Organization Type field. 54 54 55 Add these css code to your css file: #org_organisation_link_defaultorganisation_type__row, #org_organisation_country__row {display:inline-block;float:left}55 Add these css code to your css file: {{{#org_organisation_link_defaultorganisation_type__row, #org_organisation_country__row {display:inline-block;float:left}}}} 56 56 57 57 That's it.