View Full Version : help with divs


hdshngout
08-11-2005, 08:30 PM
on my site i use two div areas for my news and updates. They are positioned over two images. I designed the site in 1152 X 864 resolution, and i sent it to be critiqued at Teendev.com, and they said that it didnt appear correctly in other resolutions. I went and checked it in other resolutions and does get messed up. What i need to know is how to make the divs work in all resolutions so they dont end up in wierd places when displayed in other resolutions.

-
BTW if you need to see the source code or what happens to the divs, its righthere (http://www.mindlesstrio.com).

Thanks you for your help :)

pretender
08-11-2005, 09:03 PM
I noticed on your site you have
<html>
<head>
<title>Mindless Trio</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css"/>
</head>
<body>

ANd further down You have
<head>
<title>Tagger LE, Created by Brian Benzinger</title>
<link rel="stylesheet" type="text/css" href="styles//tagboardStyle.css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />


<script language="JavaScript">
<!--

function SymError()
{
return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
return (new Object());
}

window.open = SymWinOpen;

//-->
</script>

<script type="text/javascript">
<!--
function TAG_Pop(URL, WID, HEI) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,men ubar=0,resizable=0,width=" + WID + ",height=" + HEI + "');");
}

function tagSubmit() {
document.tagger.message.focus();
document.tagger.comment.value = document.tagger.message.value;
document.tagger.message.value = '';
}
-->
</script>
</head>
<body bgcolor="990000">
You need to only have one
<html></html>
<head></head>
<title></title>
<body></body>
So that may be alot of your problem