Results 1 to 2 of 2

Thread: division looks different in ie and firefox works...

  1. #1
    Join Date
    Oct 2010
    Posts
    14
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default division looks different in ie and firefox works...

    HI,
    I am newbie in web development. ihave written a little code.. it works infirefox
    but not in ie.. lz help..

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style>
    #addressbar{
    float:left;
    margin:2px 0 0 0;
    padding:7px;
    width:739px;
    background-color:#EFEFEF;
    text-align:left;
    font-family:Tahoma;
    font-size:12px;
    font-weight:bold;
    vertical-align:middle
    }
    * + html #addressbar{
    float:left;
    margin:2px 0 0 0;
    padding:7px;
    width:739px;
    background-color:#EFEFEF;
    text-align:left;
    font-family:Tahoma;
    font-size:12px;
    font-weight:bold;
    vertical-align:middle
    }
    #addressbar a{
    color:#595959;
    text-decoration:none;
    }
    * + html #addressbar a{
    color:#595959;
    text-decoration:none;
    }
    #addressbar a:hover{
    text-decoration:underline;
    }
    * + html #addressbar a:hover{
    text-decoration:underline;
    }
    #addressbar input,#addressbar img{
    float:right;
    padding:0;
    }
    * + html #addressbar input,* + html #addressbar img{
    float:right;
    }
    </style>
    </head>
    
    <body>
    	<div id="addressbar">
    	<p>&nbsp;&nbsp;<a href='./'> Home </a>>> Sign Up 
    	<img src="images/search_button.jpeg"/><input type="text"/></p>
    	</div>
    </body>
    </html>

    what must be the problem...
    Last edited by pritamdulam; 11-15-2010 at 08:13 AM. Reason: needed to upload images

  2. #2
    Join Date
    Nov 2010
    Location
    Belgium
    Posts
    13
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Hi,

    i'm a newbie too, but ur problem looks simple.
    Did u check the right file name in ur image-link ?
    maybe ur file is a *.jpg and not *.jpeg !!

    I try it and it works in both explorer

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •