But that doesn't have anything to do with the line below called custom classes?
.frm_grid_container andd .frm_responsive
are the classes correct?
<p>Those are Formidable’s built-in classes. You can override those with your own variations. It’s just CSS and it’s totally under your control. Have you ever configured CSS grid before? If not, it may be a benefit to brush up.</p>
Unfortunately I have no experience in this. Is it complicated to display 2 columns in responsive mode?
I have this code but don't work:
/* Responsive Spalten für Formidable Forms */
@media (max-width: 768px) { /* Maximalbreite für mobile Ansicht */
.frm_form_field {
width: 48%; /* Breite von 48% für jedes Feld */
display: inline-block; /* Inline-Block-Layout für die Spalten */
box-sizing: border-box; /* Padding und Border in die Gesamtbreite einbeziehen */
margin-right: 2%; /* Abstand zwischen den Spalten */
}
.frm_form_field:nth-child(2n) {
margin-right: 0; /* Kein Abstand nach der zweiten Spalte */
}
}
Please login or Register to submit your answer