Looks OK, except for (from your page's source code):
Code:
<link rel="icon" href="http://www.rafikicai.com/favicon.gif" type="image/gif">
<title>The Digital Doctor</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="HAPedit 3.1">
<style type="text/css">
<link rel="stylesheet" href="http://www.rafikicai.com/css/lightbox.css" type="text/css" media="screen" />
html,body{margin:0;padding:0;background-color: #6699FF;}
body{font: 100% a . . .
You can't put that (highlighted) stylesheet link there (inside an existing style section - red) and expect for it to get used. Try it like so:
Code:
<link rel="icon" href="http://www.rafikicai.com/favicon.gif" type="image/gif">
<title>The Digital Doctor</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="HAPedit 3.1">
<link rel="stylesheet" href="http://www.rafikicai.com/css/lightbox.css" type="text/css" media="screen" />
<style type="text/css">
html,body{margin:0;padding:0;background-color: #6699FF;}
body{font: 100% a . . .
That's probably the only major problem. There could be others though.
Bookmarks