browser compatibility problem of a particular website page ..

Discussion in 'HTML & Website Design' started by nandanamnidheesh, Mar 8, 2009.

  1. #1
    http://www.remg4painting.com/gallery.html

    frnds this is my frnds website, he made this recently but this gallery page is not displayed in any other browsers except firefox, can u pls tell me what will be the reason ...:confused:
     
    nandanamnidheesh, Mar 8, 2009 IP
  2. Aatu

    Aatu Peon

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    The body tag of that document is commented out, because the commenting line is missing the -- and is in wrong place. To fix this move the ">" which is after </style> to before the ending style tag and add the missing --. The end result will be

    <style type="text/css"> 
    <!--
    a:link {
    	text-decoration: none;
    }
    a:visited {
    	text-decoration: none;
    }
    a:hover {
    	text-decoration: none;
    }
    a:active {
    	text-decoration: none;
    }
    img
    {  border-style: none; }
    -->
    </style>
    
    </head>
    Code (markup):
    note: You were also missing the ending bracket for your img style so I also added that.
     
    Aatu, Mar 8, 2009 IP
  3. nandanamnidheesh

    nandanamnidheesh Active Member

    Messages:
    376
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    55
    #3
    ok thanks frnd .. it worked .. thanks...
     
    nandanamnidheesh, Mar 8, 2009 IP
  4. Aatu

    Aatu Peon

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    hehe no problem
     
    Aatu, Mar 8, 2009 IP