• Hi everyone!

    Check this out usandthemstudio.com

    In Firefox? Beaustiful!

    In IE? Not so much!

    It’s based on Chris Pearson’s Split Cutline theme. What’s happening in IE to cause the content to dip below the sidebar? Also, my attempt at conditional comments does not seem to work. I’ve placed it in the header.php file but IE is not reacting.

    Thanks!

Viewing 9 replies - 1 through 9 (of 9 total)
  • I’ll throw another one into this pond. Check out editorontheverge.com. Like Biklops, the site looks great in Firefox and (dare I say) safari, but has all sorts of problems in IE. Any thoughts?

    Fixed!

    I don’t think it looks bad in IE7 or in Firefox. Was it fixed? If not it may be becuase your images are to large it does that on WordPress blogs.

    I am having this same problem. Can someone please post a solution, or e-mail me with advice? I do not want to abandon this theme, I do like it, but It looks so bad right now in IE and Safari.

    Thanks.

    I’m having the same problem, at this site. Does anyone know how to fix this?

    I have the same problem too: onerealstory.com. Help!

    Ok I’ve been messing with this for days, I figured out what the problem was, but I don’t know how well I can explain it. Here we go. It’s in the header. The header image code to be more specific. I didn’t want different images so I had all the pages going to header-1.jpg. But I also wanted that image to link to my home page, so not knowing a stick of php, I just added an href to each php image\page commands. Wrong move. You only need to add it to one of you are using the same image on all pages. Hopefully this makes some sense, see here:

    <div id=”header_img”>
    <?php if (is_home()) { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 4″ />
    <?php } elseif (is_single()) { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 2″ />
    <?php } elseif (is_page()) { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 3″ />
    <?php } elseif (is_archive()) { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 5″ />
    <?php } else { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 1″ />
    <?php } ?>
    </div>

    I am sure there is a shorter way of doing this, but it works for me. Hope the same for you.

    That code didn’t post right:

    <div id=”header_img”>
    <?php if (is_home()) { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 4″ />

    <?php } elseif (is_single()) { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 2″ />
    <?php } elseif (is_page()) { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 3″ />
    <?php } elseif (is_archive()) { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 5″ />
    <?php } else { ?>
    <img src=”<?php bloginfo(‘template_url’); ?>/images/header_1.jpg” width=”970″ height=”220″ alt=”<?php bloginfo(‘name’); ?> header image 1″ />
    <?php } ?>
    </div>

    ok, that didn’t either, trying. As you can see only the first image is linked (href). I don’t know.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Cutline looking BAD in Internet Explorer’ is closed to new replies.