[SOLVED] Extend of the message field
I would like to extend the height of the message field in the contact form.
Where in the time template do I have to add which css-coding?
Thanks in advance
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
fügen sie folgenden css code in ihre css/custom.css
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
height: auto;
}
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
danke für die schnelle Antwort.
Den Code habe ich in die custom.css eingefügt. Jedoch erfolgt kein Änderung der Größe des Nachrichtenfelds. In der Codeanalyse wird angezeigt, dass die height über die bootstrap.css bestimmt wird.
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
height: auto !important;
}
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.