Judging from what you've said and the code I've seen, try taking off the
float: left declaration on your #logo tag. I have highlighted the changes in red. Copy and paste this and see if it is what you desire.
Code:
/* Global */
html { }
body { background-color:#666633; font-family:"Courier New", Courier, monospace;}
/* Containers */
#wrapper { width:900px; margin:0px auto; background-color:white; }
#top { background-color:#663300; width:100%; padding: 10px 0; overflow:hidden; position:relative;}
#logo { margin:0 0 0 10px;}//deleted float: left;
#motto { margin-top:80px; }
#motto p { font-size:40px; font-family:"Courier New", Courier, monospace; margin-left:225px; }
#social_media { float:right; position:absolute; top:0; right:50px; }
#social_media img { width:34px; height:34px; }
#social_media li { padding-top:40px; list-style:none; }
#topnav { background-color:#B3B366; clear:both; }
#topnav ul { width:100%; float:left; margin: 0px; background-color:#B3B366;
border-bottom:2px #000000 solid; border-top:2px #000000 solid; }
#topnav ul li { font-size:18px; font-family:"Courier New", Courier, monospace;
color:#000000; display:inline;}
#topnav ul li a { float:left; padding:10px 20px; }
#topnav a:link { color:#000000; }
#topnav a:visited { color:#000000; }
#topnav a:active { color:#000000; }
#topnav a:hover { color:#000000; background-color:#BEBE7E }
#topnav a:focus { color:#000000; }
#subbanner { font-size:22px; font-family:"Courier New", Courier, monospace;
width:100%; background-color:#B3B366; border-top:2px #000000 solid;
border-bottom:2px #000000 solid; }
#subbanner h3 { margin:12px auto; text-align:center; }
#content {float:left; width:650px; padding:20px; }
#content h1 {text-align:center; font-size:20px; }
#content p {font-size:14px; margin-top:10px; }
CSS:
Code:
<div id="topnav">
<ul>
<li><a href="index.html">Welcome</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div id="banner">
<img src="Images/Advantage-Max-4 (1).jpg" id="logo" />
</div>
<div id="subbanner">
<h3>FREE SHIPPING ON ALL ORDERS!</h3>
</div>
<div id="content">
<h1>KILL BOX DECOY WEIGHTS. THE BEST WEIGHT EVER MADE</h1>
<p>
</p>
</div>
Kind regards,
LC.