Hi
I have the same issue. do you find any solution for this bug?
The button can be customized via CSS. 😉
The CSS of the Plug… you can tell mr which line?
Thanks
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;
}
Hi
I did it but it didn’t worked..
i need to do it also to this file: styles.min
There another thing that i can do?
Thanks