Thank you for this extension
I have create contact form and i want to make two fields in one row. The fields are: from field_1 until field_2.
Which css code must be change? How is the modified code for two fields in one row. Please step by step.
thank you
Basically you need to add CSS code to make each combination label + field to a specified width and made them float to the left or right so they are displayed in a row.
Can't give you more information without a link to your page.
Ok here the link: http://haseloff-immobilien.de/immobiliengesuch
The fields with 'von' and 'bis' i would like in one row/line. Thanks
Hi,
For the first two fields with "von" and "bis" on your page you can add this CSS code at the end of the profile's CSS or at the end of your template's CSS:
div#aiContactSafe_row_aics_Grundstck_von, div#aiContactSafe_row_aics_Grundstck_bis {
clear:none !important; width:200px; float:left;
}You just need to add this code for the other fields in a similar way.
Notice the IDs of those DIVs are formed by adding the name of the field after "aiContactSafe_row_".
You have some strange chars in front of the CSS codes.
div#aiContactSafe_row_aics_Grundstck_von, div#aiContactSafe_row_aics_Grundstck_bis {
clear:none !important; width:200px; float:left;
}
div#aiContactSafe_row_aics_Wohnflche, div#aiContactSafe_row_aics_Wohnflche_bis {
  clear:none !important; width:200px; float:left;
}
div#aiContactSafe_row_aics_Zimmer_von, div#aiContactSafe_row_aics_Zimmer_bis {
  clear:none !important; width:200px; float:left;
}Remove those "Â Â ".
Forum Legend: