Hi there,
so you’re using this CSS to remove the background color:
.inside-left-sidebar .widget:nth-child(4) {
background-color: transparent
}
.inside-left-sidebar .widget:nth-child(3) {
background-color: transparent
}
But this is only for the 3rd and 4th widget, but not the 5th.
What happens if you do this instead:
.inside-left-sidebar .widget:nth-child(3),
.inside-left-sidebar .widget:nth-child(4),
.inside-left-sidebar .widget:nth-child(5) {
background-color: transparent
}