Alternative for frames

liunx

Guest
I'm an amateur web designer and am having a problem with my new website. It currently is formatted the way I want it using frames. I just found out that web crawlers and spiders don't read frames very well if at all. Is there a way to have a list (from top to bottom) on the left of clickable links and have the body of the page alligned center or to the right? I'm not knowledgeable in Java or anything other than HTML. I don't use a web publisher either, but I did try to mess with MS Frontpage without success. Any ideas? Any help would be greatly appreciated. Please reply here or e-mail me directly at <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e -->. Thanks.<!--content-->Good. Don't use FrontPage. It's a mess. Good idea to get rid of the frames too. :D <br />
<br />
If you want to do it with only HTML, tables would be your best option.<!--content-->From <!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/struct/tables.html#h-11.1">http://www.w3.org/TR/html4/struct/tables.html#h-11.1</a><!-- m -->: />
Tables should not be used purely as a means to layout document content as this may present problems when rendering to non-visual media. Additionally, when used with graphics, these tables may force users to scroll horizontally to view a table designed on a system with a larger display. To minimize these problems, authors should use style sheets to control layout rather than tables.<!--content-->Thanks for the replies meow and Charles. Do you know of a CSS or table library that might have something pre-formatted that I could tinker with? I've messed with tables a little, but don't know how to get the desired effect. You can see what I'm trying to do at the site: <!-- w --><a class="postlink" href="http://www.aparentsnightout.com">www.aparentsnightout.com</a><!-- w -->. Please don't laugh at the site:) It's not done yet. Thanks.<!--content-->Originally posted by Sje5 <br />
something pre-formatted that I could tinker with? <br />
<br />
Here you go<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><br />
<html><br />
<head><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<meta http-equiv="Content-Script-Type" content="text/javascript"><br />
<meta http-equiv="Content-Style-Type" content="text/css"><br />
<title></title><br />
<style type="text/css" title="Default" media="screen"><br />
<br />
body {}<br />
<br />
#main {float:right; width:75%; padding:5%;}<br />
<br />
</style><br />
</head><br />
<body><br />
<br />
<div id="top">the top of your page</div><br />
<div id="main">the main content section f your page</div><br />
<div id="menu">the menu section of your page</div><br />
<br />
<br />
</body><br />
</html><!--content-->Thanks Stefan. That was perfect! I already updated the site. This helps a lot.<!--content-->
 
Back
Top