Border button with 1px line (instead of 2px)
-
Hi,
https://woodmart.xtemos.com/buttons/
I would like to know what extra css or class I have to add to a “bordered button” so that the “line” is 1px. I know that this is possible in the admin for the “forms”, but cannot find the option to do this for the bordered buttons (if possible).
Help should be great.
Tim
Hello,
There is no option to change the bottom border width. We can change it with custom CSS.
We shall assign any class to a button and create CSS rule. For example, I add a class “thin” http://prntscr.com/k1xvvq then I add code to Theme Settings > Custom CSS
.thin{
border: 1px solid red;
}
The border will be 1px red.
Best Regard