Sorry this is probably something stupid I am missing, but I have a simple white border and it’s coming across grey on the screen.
This is my CSS:
.border {
border-left:5px solid white;
border-right:5px solid white;
border-top:5px solid white;
border-bottom:15px solid white;
}
How can I make it white?
Hi kieranvyas!
Please add following code to Quick CSS as well
.border { border-color: white !important; }
Cheers!
Yigit
Thanks!