views:

104

answers:

1

I am trying to set a style for the statement inside echo. It works fine in Firefox but not in Internet Explorer. Help me. Any suggestions will be helpful

 $nav .= "<div class='current'> $page </div>";

  $nav .= " <a onclick='showPage(\"".$page."\")'><div class='other'> $page </div></a> ";

$prev  = "<a class='lin' onclick='showPage(\"".$page."\")'> Prev</a>";

This is how its looking http://www.flickr.com/photos/41695354@N08/3957144073/

+1  A: 

Without seeing your code, by looking at the flickr screenshot, it appears that IE is not loading your style sheet.

You may want to use IE8, and basically hit F12 to bring up the developer app, and see what is happening on IE.

James Black