Image Map

personalizar area de post

Vá ao seu HTML e procure por:
.main-inner .column-center-outer {
ou
.post-outer {
Substitua todo o código por isto:
   .post-outer {
background: #FFFFFF;
box-shadow: inset 0px 0px 10px #ccc, 0px 0px 5px #ccc;
border-radius: 5px 5px 5px 5px;
border: 3px solid #EEEEEE;
outline-offset: -5px;
outline: 1px dashed #87CEEB;
padding: 5px 5px 5px 5px;
margin: 5px 5px 5px 5px;
-webkit-transition-duration: .60s;
}
   .post-outer:hover {
border-radius: 5px 5px 5px 5px;
border: 3px solid #87CEEB;
outline: 1px dashed #DB7093;
-webkit-transition-duration: .60s;
}

personalizar titulo da postagem

Procure por:
h3.post-title {
Substitua toda a área correspondente por:
   h3.post-title {
text-align: center;
font-family: Colonna MT;
font-size: 17px;
color: #87CEEB;
text-shadow: 1px 1px 2px #E6E6FA;
border-bottom: 1px dashed #87CEEB;
-webkit-transition-duration: .60s;}
   h3.post-title:hover {
letter-spacing: 2px;
color: #DB7093;
text-shadow: 1px 1px 2px #E6E6FA;
border-bottom: 1px dashed #DB7093;
-webkit-transition-duration: .60s;}
   h3.post-title a {
text-align: center;
font-family: Colonna MT;
font-size: 17px;
color: #87CEEB;
text-shadow: 1px 1px 2px #E6E6FA;
border-bottom: 1px dashed #87CEEB;
-webkit-transition-duration: .60s;}