Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Set Global Background Image for Site Using Visual Composer WordPress

  • SOLVED

Hi,
I would like to set a global repeating background image for a site that uses visual composer for most of its static pages (and for blog posts and other non-VC pages as well).

I have reached out to theme support, and they tell me it's not possible. However, I have to think there is *some* way to change the default white background to this image.

The site is http://caclowndes.org

It is in developments, so a splash page is up. You can log in to view the site with these subscriber credentials:

u: muffin
p: vCn6pHDXra^&dEnj

Here is an example of a page I would like to set the background for:

http://caclowndes.org/?page_id=3084

And here is the image:
http://caclowndes.org/wp-content/uploads/2015/10/orange-background.jpg

Answers (4)

2015-12-02

Firoja_Imtosupport answers:

Hello,

I understand you have some how set background image for a single page: http://caclowndes.org/?page_id=3084 and you wish the same backhround applicable globally which is currently not example:News page with white background

You can add below line of css in your header.php or theme style.css or Custom css of your current theme

#Content {
background-image: url("../wp-content/uploads/2015/10/orange-background.jpg");
}

Also if you want by visual refer http://vc.wpbakery.com/video-academy/add-row-column-background-visual-composer-wordpress/

Let me know if you face issues


Anne Shenton comments:

This worked too. Thanks!

2015-12-02

Rempty answers:

add to your style.css
#content{
background:url(http://caclowndes.org/wp-content/uploads/2015/10/orange-background.jpg) repeat transparent !important;
}


Anne Shenton comments:

This is exactly what I needed. Thank you.


Anne Shenton comments:

Actually, I was wrong. This one did not work. The code that Firoja listed did work. I'm sorry for the confusion.

2015-12-02

Sébastien | French WordpressDesigner answers:

where is the page without background ?

2015-12-02

Arnav Joy answers:

as I can see in home page and also in this url
http://caclowndes.org/?page_id=3084

there is background , so where to integrate this ?