Get rid of the scrolling div. It looks horrible that I have to scroll down to scroll another content box. And I'm using 1440x900, so imagine if I had less height to work with, how much more annoying that would be.
You should also consider using an unordered list for your navigation. That way I can have CSS disabled, and see a text version of your navigation. This will also help you to rid of the javascript used for the image rollovers. This is because you can apply link classes to the unordered list through CSS. You'd be able to apply the a{} background and then a:hover{} background jS free!
You should also get rid of the inline stylesheet. Create a new stylesheet.css file, and then upload it to your website.
Link it in your header like so:
Code:
<link type="text/css" href="stylesheet.css" rel="stylesheet" media="screen" />
For the jS that you need to keep, I'd recommend finding a way to replace it with regular CSS/HTML, but if you HAVE to keep it, you need to create a new file for the js. like "navi.js" and link it like so:
Code:
<script src="navi.js" type="text/javascript"></script>
You also have a big problem here.
Code:
<LINK REL=StyleSheet HREF="cssindex.css" TYPE="text/css">
<!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>Arbor Pro Tree Experts</title>
The first thing that should appear there is your DOCTYPE.
This is what it should look like, and feel free to take this template here:
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 profile="http://gmpg.org/xfn/11">
<title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="distribution" content="global" />
<meta name="robots" content="follow, all" />
<meta name="language" content="en, sv" />
<meta name="author" content="Jordan Miskowicz" />
<meta name="keywords" content="jordan, atourworst, org, about, domain, 2006, 2007, games, holdfire, holdfire network " />
<meta name="description" content="The personal weblog of Jordan Miskowicz. Blog entries about her boyfriend, work, school and anything else. Also available are wordpress themes, livejournal layouts, and the itunes xhtml playlist creator." />
<link type="text/css" href="stylesheet.css" rel="stylesheet" media="screen" />
<script src="navi.js" type="text/javascript"></script>
If you're going to use XHTML 1.0 Transitional as your doctype, then you need to follow the rules and guidelines. Visit
W3C to find out more information about it, if you're not fully aware of it.
http://validator.w3.org/check?verbos...orpronw.com%2F