Custom footer and blog background

Hello everybody ! I’ve created blog using Pinbin theme and I have to say it looks great.
On my site I uploaded custom background but now footer is invisible. Can I set up a custom footer only background ? I also like to set up a diffrent background for every page is this possible ? Thanks for your help. Cheers.

You can change color of footer area background or font itself.

#footer-area {
    background: #111;
}
#footer-area a {
    color: #FFF !important;
}

You can also use background image for that area

#footer-area {
    background-image: url('https://colorlib.com/pinbin/wp-content/themes/pinbin/images/wood.png');
}

You can set background image for each Post/Page based on its ID. You will have to tweak your code for each and every single to which you want to change background. Page/Post ID you can fin in your website source by looking for “postid-”

.postid-358 {
    background-image: url('https://colorlib.com/pinbin/wp-content/themes/pinbin/images/wood.png') !important;
}

Hello!

I don’t know why but

#footer-area {
background: #111; 
} 

doesn’t work for me.
My footer color isn’t changed.
For navigation it was so easy to change background-color.

Thank you for any advice!

But when I change Footer color in Theme Options, it works!

Hi all,

#footer-area {
background-image: url(‘https://colorlib.com/pinbin/wp-content/themes/pinbin/images/wood.png’);
}

It does not work in theme options. Please help…

Thanks … I am a unite fan :smiley:

This is working code . for unite theme only

#colophon {
background: url(“your image url”) repeat-x;
height: 150px;
}