Hi,
Because you are setting to show very long text in Virtuemart item that’s why you got this bug on your site and you need to make a custom work on your site
Open templates/ja_megastore/local/css/themes/redtheme/extras/com_virtuemart.css file
find and change
div[class*="-view"] .vm-col.product .spacer {
background-color: #ffffff;
padding: 20px;
border: 1px solid #ebebeb;
min-height: 465px;
position: relative;
}
@media (min-width: 992px) {
div[class*="-view"] .vm-product-footer {
display: none;
}
}
to
div[class*="-view"] .vm-col.product .spacer {
background-color: #ffffff;
padding: 20px;
border: 1px solid #ebebeb;
min-height: 530px;
position: relative;
}
@media (min-width: 992px) {
div[class*="-view"] .vm-product-footer {
display: block;
}
}
Hope it helps
Regards