Although I haven't tested it myself, here's my take on how to adjust the borders there, as suggested by others...
border: none !important;
Also, unless you want to have something specifically override it, I would recommend removing !important
.
Another recommendation would be to define the background-color
.
background-color: #FFFFFF;
Furthermore, if you have only a few of these elements and don't mind using a style
attribute in your tag, you could consider this option, which should take precedence over any conflicting CSS rules...
<div class="..." style="border:none; background-color:white"></div>
It is possible that there might be a gray background somehow, with an inner element having a white background. This setup, along with padding, may create space between the white inner div
and the parent div
(the one you are trying to fix), potentially giving the parent div a gray background from another source.