nee help again! with CSS this time :)

liunx

Guest
hey thanx everyone for replying:) I really took into consideration the CSS language and I am starting to use it myself now. but i got stuck in one part again and i was wondering if someone can help.I just need to know how to get the link on the left side to load into the right side of the page. this is the script i have now on my page:<br />
<br />
<html lang="en"><br />
<head><br />
<style type="text/css" media="screen"><!--<br />
BODY { position: relative; min-width: 600px; width: 100%; margin: 0; padding: 0; border: none; }<br />
#left { position: absolute; left: 10px; width: 19%; margin: 1% 1% 0 0; }<br />
#middle { position: absolute; left:20%; min-width: 360px; width: 80%; margin-top: 0%; }<br />
<br />
<br />
/* HR styles need for IE 6/Win. */<br />
HR.holder { width:600px; visibility: hidden } */<br />
HR.left, { width: 120px; visibility: hidden; }<br />
HR.middle { width: 360px; visibility: hidden; }<br />
//--></style><br />
<br />
<br />
<style type="text/css" media="screen"><//<br />
BODY { background: #000000; }<br />
DIV { background: #000000; }<br />
//--></style><br />
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /><br />
<title>Welcome to Ballet Panambi Vera</title><br />
</head><body><br />
<body bgcolor="#000000"><br />
<br />
<!--[if IE]><br />
<hr class="holder" /><br />
<![endif]--><br />
<br />
<br />
<div id="middle"><br />
<p title="'middle' DIV"><center><font color="yellow"><h1>Welcome to<br><br />
<br />
</p><br />
<!--[if IE]><br />
<hr class=" middle" /><br />
<![endif]--><br />
</div><br />
<br />
<div id="left"><br />
<p title="'left' DIV"><br />
<br><a href=http://www.webdeveloper.com/forum/archive/index.php/"home.html">Home</a><br />
<br><a href=http://www.webdeveloper.com/forum/archive/index.php/"contact.html">Contact</a><br />
<br><a href=http://www.webdeveloper.com/forum/archive/index.php/"History.html">HIstory</a><br />
</p><br />
<!--[if IE]><br />
<hr class="left" /><br />
<![endif]--><br />
</div><br />
</body><br />
</html><br />
<br />
<br />
Hopefully the html is disabled here<br />
<br />
thanx<br />
<br />
<br />
:D<!--content-->Ok, I did a stripped down version of what you had and I know you said you wanted the link on the right side, but you didn't say which one, so I moved all of them. Also note that if you do want to make something invisible, using "display:none" is the way to go because it's been around since IE 4 and Netscape 4. Anyway, here's the code and if anybody has a clue why the charset meta tag doesn't validate I'm all ears because it does on my site, but I'm going against XHTML 1.1. Not that it should make a difference.<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/htm14/strict.dtd"><br />
<html><br />
<head><br />
<title>Welcome to Ballet Panambi Vera</title><br />
<meta name="Language" content="en" /><br />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><br />
<style type="text/css" media="screen"><br />
<!--<br />
BODY { min-width: 600px; margin: 0; background: #000000; }<br />
H1 { color:yellow; text-align:center; }<br />
.menu { position: absolute; left: 80%; width: 19%; margin: 1% 1% 0 0; }<br />
.menu a { display: block; font-size:150%; }<br />
//--><br />
</style><br />
</head><br />
<body><br />
<h1>Welcome to</h1><br />
<div class="menu"><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"home.html">Home</a><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"contact.html">Contact</a><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"History.html">History</a><br />
</div><br />
</body><br />
</html><!--content-->
 
Back
Top