VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: vasia on September 30, 2014, 11:42:01 AM

Title: Shipment/Payment method
Post by: vasia on September 30, 2014, 11:42:01 AM
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]
Title: Re: Shipment/Payment method
Post by: GJC Web Design on September 30, 2014, 13:24:38 PM
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;
}