Als ik nog een paar tips mag geven:
De volgende link werkt niet:
Code:
<link href="jquery.tweet.css" media="all" rel="stylesheet" type="text/css"/>
Zet al je javascript in 1 bestandje.
The problem caused by scripts is that they block parallel downloads. The HTTP/1.1 specification suggests that browsers download no more than two components in parallel per hostname. If you serve your images from multiple hostnames, you can get more than two downloads to occur in parallel. While a script is downloading, however, the browser won't start any other downloads, even on different hostnames.
Op je back to top kan je gewoon #containHeader zetten. De volgende a tag is dus niet nodig
Code:
<a name="top" id="top"></a> <!-- to top -->
Je gebruikt ook nogal veel div tags waar het niet nodig is zoals bij titels. Het is best dat je h1, h2, h3, ... gebruikt voor titels. Vooral naar seo is dit belangrijk. Ik zou van de volgende titels h2 maken en de sitebar titels eventueel h3.
Code:
<div id="webshite">
<p>Webshite</p>
</div>
<div id="recent">
<p>Recent Work</p>
</div>
De volgende css code is ook raar. Je zet een achtergrond kleur, border en font kleur op een paar klassen en dan ga je deze direct terug vervangen.
Code:
.tweet .tweet_list, .query .tweet_list span a:hover {
color: #FFFFFF;
background-color: #414042;
border-bottom: 1px solid #888A8d;
text-decoration: none;
}
.tweet .tweet_list, .query .tweet_list span {
font-size: 11px;
list-style-type: none;
line-height: 14px;
color: #888A8d;
margin: 0;
background-color: #FFFFFF;
border: 0px;
position: absolute;
left: 580px;
width: 290px;
z-index: 1;
}