• Hi. I am having an issue with my background tiling on higher resolution monitors. I am using a modified version of color3 (only modified the background image). https://www.cfhministries.com

    Here is an excerpt from the style sheet. Nothing else has been changed in the style sheet, other than background no-repeat. Any help would be fantastic. Thanks!

    body {

    font-size:62.5%;

    font-family:”Lucida Grande”,”Lucida Sans Unicode”,Calibri,Arial,Helvetica,Sans,FreeSans,Jamrul,Garuda,Kalimati;

    background-image: url(images/wide.jpg);

    background-repeat: no-repeat;

    background-color:#000;

    color:#fff;

    text-align:center;

    margin:0;

    padding:0;

    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • the background is set to repeat-x – both in style.css and in the embedded styles.

    double check your styles; if you can’t access what is output as embedded body background styles to the head section, try to force your background repeat by using !important;

    example:
    body { background-repeat: no-repeat!important; }

    Thread Starter mkilroy6333

    (@mkilroy6333)

    Thanks so much! I had to force the repeat as you suggested. I appreciate the prompt reply!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can't stop background from repeating…’ is closed to new replies.