Archived topic
How to add border in comment box?
3 replies · Started by Sheshan Pradhan on December 21, 2020
Hello, I just noticed that the border of my comment box is not visible, and it conceals with the white background. But this is happening only in mobile devices, in desktop, it has a thin border.
Here is how it looks.
http://pscnotes.in/wp-content/uploads/2020/12/1608553545705.jpg
I also want to add borders to the Name and email field.
Please help.
Hi there,
you have this CSS which is removing borders of all input fields on Mobile devices:
/* FORM STYLING */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
border: none;
font-size: 0.8em;
}
I cannot see where that CSS is added as your cache plugin is still enabled.
I have removed this code from additional CSS, and now the borders are showing.
Thank you
You're welcome