my site is garbage

admin

Administrator
Staff member
Loook at my site... i want to put links on the left side of the words.. how do i do that? im not sure if i use frames or what...<br />
<br />
my site (<!-- m --><a class="postlink" href="http://www.teamedgepaintball.tk">http://www.teamedgepaintball.tk</a><!-- m -->)<!--content--><table align="center" border="0"><br />
<tr><br />
<td width="200"><br />
link<br><br />
link<br><br />
link<br><br />
</td><td width="800"><br />
all that writing goes here<br />
</td><br />
</tr><br />
</table<!--content-->I was gonna say the same thing...check out the site in my signature, is that how you want it to look?<!--content--><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"><br />
<html><br />
<head><br />
<title>CSS layout</title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<style type="text/css"><br />
#content {<br />
margin-left: 210px;<br />
}<br />
#menu {<br />
position: absolute;<br />
left: 10px;<br />
width: 200px;<br />
background-color: #eeeee;<br />
border: 1px solid #999999;<br />
}<br />
</style><br />
</head><br />
<body><br />
<div id="menu"><br />
<ul><br />
<li>Menu item 1</li><br />
<li>Menu item 2</li><br />
<li>Menu item 3</li><br />
</ul><br />
</div><br />
<div id="content">Main content here...</div><br />
</body><br />
</html><!--content-->1) You ought not to use TABLEs for layout.<br />
<br />
2) You ought to organize your page so that it works without style sheets. The second example will, on an audio browser, require the user to listen to the links before getting to the content. And if you have a number of pages with the same long list links at the beginning of each page it will be very unpleasant.<br />
<br />
Use instead:<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<meta name="COntent-Style-Type" content="text/css"><br />
<title>Example</title><br />
<br />
<style type="text/css"><br />
<!-- <br />
#main {margin-left:5em}<br />
<br />
#menu {<br />
width:5em;<br />
position:absolute;<br />
top:0px;<br />
left:0px;<br />
padding:1em;<br />
} <br />
<br />
#menu a {display:block}<br />
<br />
#menu span.divider {display:none}<br />
--><br />
</style><br />
<br />
<div id="main"><br />
<h1>Lorem ipsum</h1><br />
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipitlobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor *** soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.</p><br />
</div><br />
<br />
<div id="menu"><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"fee.html">Fee</a><br />
<span class="divider">|</span><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"fie.html">Fie</a><br />
<span class="divider">|</span><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"foe.html">Foe</a><br />
<span class="divider">|</span><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"fum.html">Fum</a><br />
</div><!--content-->wow that's a lot more complicated... but anything to help the blind paintball players<!--content-->You will find that pages that work on Audio browsers also work well on hand helds and with search engines.<!--content-->all those ways work on audio browsers<!--content-->Originally posted by IncaWarrior <br />
all those ways work on audio browsers Not the example you provided. That's why according to the HTML 4.01 Specification tables should not be used for layout.<!--content-->Part of the problem with this site is angelfire is the host of it. I hate it when I am jumped by 5 or six pop up ads and they molest me but, I am just too lazy to get a pop up blocker. Try to find a host that is more conservative with their ad impressions. SpacePorts, freewebs, brinkster, flatface, lycos.co.uk is a good host too. All are free and if not ad free dont have many.<!--content-->yeah, i use brinkster and have no ad problems seeing as there aren't any<br />
<br />
my way is easier to read<!--content-->I used to use brinkster, they are a terrible host all together. I mean I tryed to run asp.net off of their servers and I would get hundreds of errors and it wasn't me eather, it was them, They were 'viewstate errors' the old #500 errors. It was because brinkster is a webfarm and they are using old servers, by that I mean nt. Also they cap bandwidth at 16 meg a day. That was roughly about 50 hits for me, so I had to leave. I am not running a high traffic site its just, I hate going on at 7 at night and finiding my site has been shut down for several hours.<!--content-->well for me running a 50kb site with no serverside code it's fine<!--content-->I just got tired of worrieing about the cap and got tired of all of their restrictions and everything and found myself a more genorous host. and oh yea did I mention my host is micro$oft powered :) <!-- m --><a class="postlink" href="http://europe.webmatrixhosting.net/text.aspx?tmpl=about">http://europe.webmatrixhosting.net/text.aspx?tmpl=about</a><!-- m --><!--content-->
 
Back
Top