Hey! I’ve been attempting to put a white, rounded background behind my widgets. I’ve figured it out for the most part - but I’m struggling with getting a background to appear behind my text widget.
This is what I have right now:
.textwidget {
background-color: #fff;
}
.widget ul li
{
background-color:#ffffff !important;
}
.widget > ul, .widget > div
{
background-color: transparent !important;
}
The two seem to work separately. But for some reason, the two seem to cancel each other out. Any tips on why they aren’t working together?