Link to home
Start Free TrialLog in
Avatar of Jonathan Duane
Jonathan Duane

asked on

setting backkground on single page on wordpress

Hi Guys,

i am trying to set the background on a page using a plugin called Royal CSS and i have added this line in

background: url(http://zbm.com.au/wp-content/uploads/2017/03/HPTO.jpg) no-repeat;

the page is http://zbm.com.au/dentist1 but it just wont change...
Avatar of Gregory Miller
Gregory Miller
Flag of United States of America image

In your "style.css" you have this code which is setting the page background of the URL you provided:
body {
    -moz-text-size-adjust: none;
    background: rgba(0, 0, 0, 0) url("http://zbm.com.au/wp-content/uploads/2016/07/zoobg.jpg") no-repeat scroll 0 0 / cover ;
    color: #000;
    font-family: "proxima_novalight",Arial,sans-serif;
    font-size: 19px;
    line-height: 24px;
    overflow-x: hidden;
}

Open in new window


I know nothing about the plugin you are trying to use but you should be able to simply modify your CSS in the "style.css" file and be done.
Avatar of Jonathan Duane
Jonathan Duane

ASKER

yes but will not that set the background for the whole site, i only neewd/want it for one page
ASKER CERTIFIED SOLUTION
Avatar of James Rodgers
James Rodgers
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial