• Closed
  • August 3, 2016 at 11:37 am #29575

    Hi Guys,
    I’ve been trying to set background images for some specific pages on my site
    using:
    body.page-id-127 {
    background: url(‘http://thatfootballgame.com/wp-content/uploads/2016/08/blank-scroll.gif’);
    background-repeat:repeat-y;
    }
    in the custom css section of the theme config. Where page 127 is the rules page I want the background on.

    Nothing changes on my rules page?? Any ideas where I’m going wrong?
    Thanks
    Stephen

    Daniel Jones
    Spectator
    Posts: 148
    August 3, 2016 at 2:18 pm #29578

    Hi Stephen,

    Thank you for reaching out.

    The issue seems to be the CSS code (it should not be single quotes ‘ ‘), kindly implement the following CSS code.

    body.page-id-127 {
    background: url("http://thatfootballgame.com/wp-content/uploads/2016/08/blank-scroll.gif");
    }

    Please let me know if this helps.