Wie kann ich die Position von dem Label und Input im Quickmode festlegen? Es sieht so aus das die Standardeinstellungen die Tabellen aufteilen. Gibt es eine einfache Möglichkeit um das Problem zu lösen?
Ja, die gibt es. Fügen Sie einfach folgenden Code in Ihre template.css* Datei ein:
Code
.bfQuickMode p input[type='text'], .bfQuickMode p textarea, .bfQuickMode p select { width: 55%; } .bfQuickMode .bfLabelLeft label { width: 35%; }
How do I adjust the position of the label vs. the input field in QuickMode? It appears that the standard configuration splits the columns 50/50. Is there a simple way to adjust this ratio throughout?
Yes, there is. Just add this code to your template.css* file:
Code
.bfQuickMode p input[type='text'], .bfQuickMode p textarea, .bfQuickMode p select { width: 55%; } .bfQuickMode .bfLabelLeft label { width: 35%; }
Die Weite können Sie nach belieben verändern.
*Es ist vorgesehen das Sie den Code in Ihre template.css Datei hinzufügen anstatt in Ihre BreezingForms system.css, weil die vorgenommenen Änderungen bei deinem upgrade wieder verloren gehen würden.