• On my home computer everything appears as it should with the theme im using for my blog.

    However when I looked at the site at work, the posts show up half way down the page leaving a large white space between the banner and the post which is not intened…

    ..also the home and about page links at the top are moved up higher then they appear on my home machine.

    Is anyone else seeing the posts out of place? and do you have a suggestion to remedy the situation? Is something wrong in the style sheet code?

    https://www.concretejungleblog.com

Viewing 6 replies - 1 through 6 (of 6 total)
  • What browser are you using at home, and what browser are you using at work? If you are using Explorer in both places, what version(s)?

    Thread Starter dbartman

    (@dbartman)

    at home im on a new xps 1530 with firefox…here at work is IE (looks like 2003)

    does the page appear wierd to you?

    On IE6 it does, IE6 has a lot of issues with CSS. You might want to ask the developer of the theme if there is a workaround for this (best idea). Otherwise you will need to get into the style sheet yourself and make some adjustments

    Thread Starter dbartman

    (@dbartman)

    but if i make it look right in IE6 it will probably look odd in the latest version?

    Not necessarily. Probably what you want to put in is a conditional comment. This would go in header.php if you have one, or wherever your HTML header is for your blog index. It loooks like this:

    <!--[if lte IE 6]>
    <style>
    <your style code goes here>
    </style>
    <![endif]-->

    All other browers treat this as a comment and ignore it, but IE6 and 7 evaluate the function in the brackets. This one is probably what you want, it says “if this browser is equal to or less than IE6”, and you put a style in there that overrides your style sheet, and makes the adjustment you need.

    I think you want the theme developer to suggest the “adjusted” style that goes in here.

    Thread Starter dbartman

    (@dbartman)

    ok ill try that out at home tonight

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Posts not in place’ is closed to new replies.