Hello,
I' have a problem into cart, in payment and shipment method selection. When I have more than 1 text line in title and description, the checkbox isn't in first line of text but it changes position.
This is the source in webpage:
<fieldset>
<input type="radio" name="virtuemart_paymentmethod_id" id="payment_id_2" value="2">
<label for="payment_id_2">
<span class="vmpayment">
<span class="vmpayment_name">Title</span>
<span class="vmpayment_description">Description</span>
</span>
</label>
</fieldset>
So, I'm looking for its template if someone knows where I can find it.
Except if there is another way to resolve it.
Thanks in advance. Waiting for your knowledge.
[attachment cleanup by admin]
It's not in any template - it is created on the fly in the vmpsplugin.php
Looks only like a clearing problem in css
try something like
<some selector> fieldset{
clear:both;
display:block;
}