Backup you css and then try this….
div.wpappbox.simple {height: 86px;}
remove height, then add overflow: hidden;
so it should be this:
div.wpappbox.simple {overflow: hidden;}
Next…
div.wpappbox.simple a.appbutton,
div.wpappbox.screenshots a.appbutton,
div.wpappbox.compact a.appbutton,
div.wpappbox.banner a.appbutton,
div.wpappbox.video a.appbutton {
height: 44px;
float: right;
margin: 10px;
display: inline-block;
border: 1px solid #E5E5E5;
padding: 10px 15px;
font-weight: bold;
font-size: .95em;
line-height: 1.6em;
text-align: center;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
remove height
so it should be this:
div.wpappbox.simple a.appbutton,
div.wpappbox.screenshots a.appbutton,
div.wpappbox.compact a.appbutton,
div.wpappbox.banner a.appbutton,
div.wpappbox.video a.appbutton {
float: right;
margin: 10px;
display: inline-block;
border: 1px solid #E5E5E5;
padding: 10px 15px;
font-weight: bold;
font-size: .95em;
line-height: 1.6em;
text-align: center;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}