Support » Themes and Templates » Top portion of page suddenly not matching theme.

  • The top portion of any of the pages of my site is not matching the rest of the theme. http://www.snoopyscorner.com
    There should be a white background as seen when you scroll down on my posts pages. But now it is not there.
    Any ideas? Thanks!
    Noelle 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • Using FF, I don’t see anything funny.

    Thread Starter knowl91

    (@knowl91)

    The top post is supposed to have a white background like those below. It is showing gray from some reason.

    Open style.css from your theme. Find this:

    .entry_firstpost{
    	background: #fafafa url(images/comment-area.gif) repeat-x left top;
    	padding: 1px;
    	margin: 0px;
    }
    
    .latest_firstpost{
    	background: #F3F3F3 url(images/latest.gif) no-repeat bottom right;
    	padding: 15px;
    	margin: 0px;
    }

    Change to this:

    .entry_firstpost{
    	background: #fff url(images/comment-area.gif) repeat-x left top;
    	padding: 1px;
    	margin: 0px;
    }
    
    .latest_firstpost{
    	background: #fff url(images/latest.gif) no-repeat bottom right;
    	padding: 15px;
    	margin: 0px;
    }

    (Note that the only thing changing is the background: #___ part of each entry.)

    Thread Starter knowl91

    (@knowl91)

    Thanks, but no luck with the code change. Still get the same issue. Is there something else that would be causing this?

    After uploading the style sheet, hold down shift while clicking reload to force the cache to clear. CSS files are usually cached.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Top portion of page suddenly not matching theme.’ is closed to new replies.