How to add matching background image to the blog page ?

Hello, I would liek to add a background image to my blog page so that it matches the rest of my site and it's not just plain white. How can I do that ? 

This is my blog page - https://esteefotomua.weebly.com/blog

1,481 Views
Message 1 of 9
Report
8 REPLIES 8
Square

Hi @esteewhite I believe that is only possible with custom html/css code. If that is something you are familiar with there may be a user on here that can help you figure it out. Is it an image or a background color you are trying to upload? 

1,471 Views
Message 10 of 9
Report

Thank you @Bernadette, I am not very familliar with css but I will research it if I know what I'm supposed to do. I would like to use an image from my computer for background but if this is too complicated I am ok with just using a solid color - just something so it's not completely white.

1,468 Views
Message 10 of 9
Report

If you're going to use the same background image from another page you shouldn't need to worry about re-uploading the image, and it will make coding it a little simpler.

1,463 Views
Message 10 of 9
Report

Yes, same image
1,462 Views
Message 10 of 9
Report

Ok, add this to the Footer Code field for your blog page on the Pages tab (it's in SEO Settings there):

<style>
    .main-wrap
    {
        background-image: url("/uploads/1/2/6/8/126845556/background-images/408852606.jpg") !important;
        background-repeat: no-repeat !important;
        background-position: 50% 50% !important;
        background-size: 100% !important;
        background-color: transparent !important;
        background-size: cover !important;
    }
    .wsite-not-footer
    {
        background: rgba(244,247,248,0.8) !important;
        border-radius: 10px !important;
    }
</style>

1,424 Views
Message 10 of 9
Report

Oh - this will only show a difference on the published site.

1,424 Views
Message 10 of 9
Report

@BJ Thank you so so much Smiley Happy it worked great I really appreciate your help Smiley Happy 

1,399 Views
Message 10 of 9
Report

No prob!

1,398 Views
Message 10 of 9
Report