Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
hey so I made a custom liquid code for a text form
this is the code
<textarea
required
class="text-area"
placeholder=" Type your email here"
name="properties[your_email]"
form="product-form-{{ section.id }}">
</textarea>
and I have no idea on how to make it the same length as the "buy" button or even make the height of it as I desire
please help
Hi @yua ,
You need to add css code same height and width of the button. You like to match.
how do I do that? is it "class" command?
or just put height and width? since that doesn't work
It depends how you like to attach the style.
You can attach by style tag.
<style>
.textarea {
width:
hieght:
}
</style>
Thank you I will try