Hi
Try in this way
in this file /templates/ja_social/css/template.css around line 41 now you have
p.readmore {
background: url("../images/readon-bg.gif") repeat-x scroll left bottom transparent;
border: 1px solid #DDDDDD
float: left;
font-weight: bold;
padding: 2px 6px;
}
Add this line margin-bottom: 20px !important;
So the new code will be
p.readmore {
background: url("../images/readon-bg.gif") repeat-x scroll left bottom transparent;
border: 1px solid #DDDDDD
float: left;
font-weight: bold;
margin-bottom: 20px !important;
padding: 2px 6px;
}
Regards