Site logo

[Resolved] Widget background color

Home Forums Support [Resolved] Widget background color

Home Forums Support Widget background color

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2411993
    Petar

    Hi, one of my left sidebar widgets suddenly got a white background. I didn’t change anything. The same code works on another widget above where everything is fine, the background is transparent.

    So I was wondering, how to remove the white color. I will paste the info into the private section

    #2412358
    David
    Staff
    Customer Support

    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
    }
    #2412427
    Petar

    thanks

    #2412641
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.