add background to sidebar

Hi I would like to add a background image to the sidebar with custom css. I already tried but I can’t get it working. Any idea/help would be welcome.

please see: http://www.agrohof.nl

I have 3 widgets in the right sidebar and I want to have it look like one sidebar with all togeether the same background image that’s repeating.

I tried already:
#secondary
background: url(http://www.agrohof.nl/achtergrond.jpg) repeat-y;

.widget
background: url(http://www.agrohof.nl/achtergrond.jpg) repeat-y;

article
background: url(http://www.agrohof.nl/achtergrond.jpg) repeat-y;

without any luck.
Hope any one here can help me.

Hi @jramerman,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Travelify Other Options

#secondary {
    background: url(http://www.agrohof.nl/achtergrond.jpg);
}
#secondary .widget {
    background: transparent;
}

Best Regards,
Movin

Hello, this was the right solution for me. Thanks!

You are always welcome here :slight_smile: