form field corner
Hey,
Is there a way to do a field corner only from one side?
Thanks in advance :)
-
No sorry, you can't control the borders individually from the builder.
What you can do is write a bit of CSS that will solve it.
1. give your form a class
2. write some CSS for the button and input
Here is the code so you don't have to write it again:
.my-contact form .brz-forms2__item button{
border-bottom-left-radius: 0 !important;
border-top-left-radius: 0 !important;
}.my-contact form .brz-forms2__item input{
border-bottom-right-radius: 0 !important;
border-top-right-radius: 0 !important;
}Of course you need to replace .my-contact with the name of your class in case you give it another name.
Hope this helps.
1 -
it worked for me! thank you so much for your help :)
0 -
Sure thing, anytime.
0
Please sign in to leave a comment.
Comments
3 comments