How to override the size of the fields in the template #48
Closed
jorge-ramirezs
started this conversation in
General
Replies: 1 comment 6 replies
-
Hey!
Are you rendering the `form.media` in the template?
The other option is to override the css directly in your app styles or in the template:
```css
.places-widget > input:first-child {
display: block;
width: 30%;
margin-bottom: 10px;
}
```
Lmk if that solve it.
|
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I'm creating a new template, the issue is once I display the "location" form in the template, the field for the address is too small.
How can I modify the size for the fields?
in template I'm just passing this
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions