Your site loads painfully slow. There are a number of errors:
missing a dash between "text" and "align".
Code: Select all
#serendipityRightSideBar {
text align: left;
}
.serendipityLeftSideBar {
text align: center;
}
this should be font-style: italic, not font-weight:
Code: Select all
.serendipity_date {
font-weight: italic;
}
Missing a semi-colon after "baseline":
Code: Select all
div.serendipity_entryFooter {
text-align: left;
vertical-align: baseline
margin: 0px 0px 0px 0px;
font-weight should be expressed in 100's, ie 100, 200, 300, etc, and the font-size of 90% will never apply because the 95% is marked !important:
Code: Select all
td.serendipity_weekDayName {
font-size:95%!important;
font-size:90%;
font-weight:575;
Missing the closing bracked "}":
Code: Select all
.serendipity_categories_plugin input {
width: 50% !important;
feed.css, color only shows 5 digits, you probably meant #999999:
Code: Select all
div#adspot_701997872.adspot {
border-color:#99999;
You are loading a stylesheet by the name of feed.css 6 times - I presume this is once for every ad???
Start by fixing the above errors - see where you stand then.