Home › Forums › CSS › Removing borders sitewide › Reply To: Removing borders sitewide
February 16, 2019 at 9:52 am
#282974
Participant
You could try searching your stylesheets for all instances of “#fff”, “white”, “255,255,255”, and other ways to write “white” (or whatever colour), to edit things directly from the backend. Look for box-shadow
properties that can also masquerade as borders too.
Otherwise, the way you’re doing it from the frontend, assuming you’re inspecting the offending elements inside the developer toolbar on each page in turn, would seem like the surest way to go.
You could try a “kill all” in your stylesheet for every element in the page as well but it might have knock-on effects for those places where there are borders and box-shadows that you want to keep;
* {
border: none !important;
box-shadow: none !important;
}