Link to home
Start Free TrialLog in
Avatar of whocaresaboutit
whocaresaboutit

asked on

html load webpage with horizontal scrollbar centered

see code below, size of image..

the image width is bigger than the resolution most people use on their computers...

this pages loads with the regular browser horizontal scroll bar justified to the left...

what do I need to make it load centered? so that when the page loads the horizontal scroll bar would appear centered, showing the middle of the image...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body bgcolor="#000000" leftmargin="0" topmargin="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><img src="http://www.domain.com/image.png"  width="1594" height="530" /></td>
  </tr>
</table>
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Michel Plungjan
Michel Plungjan
Flag of Denmark image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial