help change background sidebar and articles

Hi, thanks for this forum about colorlib theme!

its possible change the background of sidebar? “image or color”

and change the background of articles? “image or color”!

thanks for support!!

Hi @ceballos01,

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

You can change the background of sidebar and articles to the colors using the following CSS code.


#secondary .well {
  background-color: #77CC6D;
}

#primary .post-inner-content{
  background-color: #77CC6D;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Change the background of sidebar and articles to the image using the below CSS code.

#primary .post-inner-content{
  background-image: url("http://wikipics.net/photos/20150206142322639625248.jpg");  
}

#secondary .well {
  background-image: url("http://static.guim.co.uk/sys-images/Guardian/Pix/pictures/2014/4/11/1397210130748/Spring-Lamb.-Image-shot-2-011.jpg");
}

Change the image URLs in the above code to whatever you want to use.

Use the above CSS code by adding it in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

Best Regards,
Movin