"comments@http://wmckconst.com" isn't a valid email address. I imagine you entered "http://wmckconst.com" for your domain in the Installer when you should have just entered "wmckconst.com". You will need to go to Settings -> Email -> Editor and for each email correct the 'From Email' and 'Reply Email' values.
The Newest and Oldest are just standard links. You can change the font colour of them by adding something like this in your stylesheet:
Code:
a:link {
color: blue;
}
a:visited {
color: blue;
}
a:active {
color: blue;
}
a:hover {
color: blue;
}
The preview box is that wide because that's the width that you set for the left column. I recommend that you temporarily use the border styling, as suggested before.
Try this for the left column:
Code:
float:left;width:430px;margin-left: 1px;border-style:solid;
And this for the right column:
Code:
float:left;width:400px;margin-left:50px;border-style:solid;
By the way, if you put the Sort By code
inside the average_rating_block div then it will align correctly with the pagination links and you wouldn't need to use this:
Code:
.height_below_sort {
margin-bottom: -38px;
}
So it would look like this:
PHP Code:
<?php
echo "<div class='average_rating_block'>";
//Sort By code here
echo "</div>";