@Kim: There is issue in your Custom CSS. You haven’t closed the brackets. You have missed closing brackets }
in two places.
Go to your custom css and find the following css:
.widget_image img {
border: none;
margin: 0;
padding: 0;
footer.entry-meta { display: none; }
Then replace it with the following css:
.widget_image img { border: none; margin: 0; padding: 0; }
footer.entry-meta { display: none; }
Next, find the following css:
#secondary .social-profile ul li {
display: inline-block;
float: none;
Then replace it with the following:
#secondary .social-profile ul li {
display: inline-block;
float: none;
}