Changes between Version 19 and Version 20 of DeveloperGuidelines/Themes


Ignore:
Timestamp:
11/30/14 09:40:38 (10 years ago)
Author:
Tirgil
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Themes

    v19 v20  
    5151
    5252=== 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.
     53By 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.
    5454
    55 Add these css code to your css file: #org_organisation_link_defaultorganisation_type__row, #org_organisation_country__row {display:inline-block;float:left}
     55Add these css code to your css file: {{{#org_organisation_link_defaultorganisation_type__row, #org_organisation_country__row {display:inline-block;float:left}}}}
    5656
    5757That's it.