html/css/php problem

trebor

New Member
Messages
35
Reaction score
0
Points
0
Strange problem with my code listed below...
in internet explorer it shows my ad but not the gray box to the left...
in firefox I don't see the ad (adblock plus I believe catches it) but I see the grey box to the left whats up?
note: I'm misnamed this topic sorry...
Code:
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PHP template</title>            
<style>

body{
    background-color:tan;
}

#top{
    background-color: white;
    top:5%;
}

#left{
float:left;
width:25%;
background-color: grey;
}

#right{
float:Right;
width:75%;
background-color: Black;
color:grey;
text-align:right;
}

</style> 
</head>
<body>

<div id="top">
<script type="text/javascript" src="http://x10hosting.com/adserve.js?trebor" ></script>
</div>

<div id="left">
<a href="game/frame.php">Play the Game</a><br>
<a href="talk/talk.php">Talk to Me</a><br>
</div>

<div id="right">
<br>
</div>
</body>
</html>
 
Last edited:

Zenax

Active Member
Messages
1,377
Reaction score
4
Points
38
try putting them in a wrapper div. then have them like they are.

Code:
<!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=iso-8859-1" />
<title>Untitled Document</title>

<style>
#wrapper	{
width: 720px;
height: 720px;
border: 1px solid #000;
}

#top	{
width: 98%;
margin: 5px;
background-color: #FFF;
border: 1px solid #000;
}

#left	{
float: left;
background-color: #CCC;
border: 1px solid #000;
margin: 5px;
position: relative;
}

#right	{
float: right;
background-color: #CCC;
border: 1px solid #000;
margin: 6px;
position: relative;
}
</style>
</head>

<body>


<div id="wrapper".

	<div id="top">
	
	123456
	
	</div>
	
	<div id="left">
	
	123456
	
	</div>
	
	<div id="right">
	
	123456
	
	</div>
	
</div>
</body>
</html>

See working here: http://www.justlife.exofire.net/outside/test.html
 
Top