Viewing 5 replies - 1 through 5 (of 5 total)
  • Change this in your style.css

    #header { background: url("/blog2/wp-content/themes/theme01/images/mpalmerdesigntitlebanner.jpg") no-repeat top center;   /* FOR HEADER IMAGE */
    }

    to

    #header { background: url(images/mpalmerdesigntitlebanner.jpg) no-repeat top center;
    /* FOR HEADER IMAGE */
    }

    Thread Starter mpalmerdesign

    (@mpalmerdesign)

    Thanks for the reply!

    I did that, and while it’s a much better path for linking to the header image (thanks for the tip there), I still have the same problem when it comes to the comment page: http://www.mpalmerdesign.com/blog2/?p=1#respond

    The image still keeps tiling down the page. Example: http://www.mpalmerdesign.com/misc./repeatingimagesincomments.png

    If you view source on your comment page, you’ll see this code:

    #page { background: url("http://www.mpalmerdesign.com/blog2/wp-content/themes/theme01/images/mpalmerdesigntitlebanner.jpg") repeat-y top; border: none; }

    That appears to be repeating the image along the y-axis. The code also shows up on the main blog page, but for some reason on that page something is overriding the repeat.

    You need to track down where this is coming from. It’s probably either hard-coded in your header.php file or it’s being inserted into head by a plugin or something else.

    Looking at the source code of that comments page, you have the following style – delete it.

    <style type="text/css" media="screen">
    #page { background: url("http://www.mpalmerdesign.com/blog2/wp-content/themes/theme01/images/mpalmerdesigntitlebanner.jpg") repeat-y top; border: none; }
    </style>

    Thread Starter mpalmerdesign

    (@mpalmerdesign)

    mercime and asechrest, thank you! This did the trick indeed!

    I appreciate you all taking the time to help us green folk out. 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Header repeating vertically down comments page. ???’ is closed to new replies.