1

Topic: Logo not visible with IE

Hi..
I make this in site.css file:

    div#header {
        margin: 0px auto;
        width: 780px; height: 90px;
          background: url('logo.jpg') no-repeat; }

and this in header.tpl

<div id="page">
        <div id="header_wrap"
            <div id="header">
                <h1><span></span></h1><br>
                <div class="banner_header">
                    {banners:group="header"}
                </div>
            </div>
        </div>

With Firefox it's all ok and the logo it's perfect visible.
With IE the logo is not visible. sad

Why ?

I use a webby2 template.

Last edited by Meetpoint (2008-04-24 17:45:43)

2

Re: Logo not visible with IE

<div id="header_wrap"

You did not close the above with a > It should look like this:

<div id="header_wrap">

3

Re: Logo not visible with IE

loool ... I had not seen that lacked > -_-'

Work.. Tnx