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
Hi guys,
I would greatly appreciate any help on this!! I am looking to make my contact form have a rectangle surrounding the whole entry (for every entry) just like the "message" entry. Website: seraneeva.com
Solved! Go to the solution
This is an accepted solution.
Hi @flammagreg
Please put this code in theme.liquid before body closing tag </body>
<style>
#ContactForm input{
border: 1px solid var(--border-color);
padding: 10px;
}
</style>
It will result in like this
Thanks!
This is an accepted solution.
Hi @flammagreg
Please put this code in theme.liquid before body closing tag </body>
<style>
#ContactForm input{
border: 1px solid var(--border-color);
padding: 10px;
}
</style>
It will result in like this
Thanks!
Thank you!! Any chance do you know how to move the stars on the required sections to be after the text and have a space between the text and star?
@flammagreg
Put this code in theme.liquid before body closing tag
<style>
.reviews-star-rating__stars {
order: 2;
}
</style>
Final result will be like this
Thanks!
The stars on the required sections of the contact us page
@flammagreg
You have to do it through liquid code, search for a file like contact.liquid or similar file and edit it from there
Thanks!