How to add a black outline to checkout button in Dawn theme?

Hi there all!!

Im giving up, after searching and searching i cannot find how to get a black lining around the button: afrekenen (checking out), can please someone help me!!

Im using the dawn theme. See picture for clarification.

Hello @samjordan23
Its Artzen Technologies! We will be happy to help you today.

For adding the border around that text you simply have to add a css to the base.css on the class from where this text is coming. And the css is:-
button#checkout{
border**: 1px solid black; (Here you can add any color of your wish)**

}

This will simply add the border around the text or the area in which this text is printed.

And even if the problem occurs then feel free to contact us.
If solution helped then mark it as accepted.

Let me know if need further assistance
Regards,
Artzen Technologies

@samjordan23 add below css into base.css file

button#checkout {
    border: solid 1px black;
}

WAUW THANK YOU SO MUCH IT WORKED!!!