Want to add more space betwen shipment and payment lines in checkout

Started by t68, April 29, 2013, 08:59:20 AM

Previous topic - Next topic

t68

Hi!
Here´s a very specific question about styling the checkout page:
Att the bottom ov the table, i would like to add more space below row with the link text labeled "Choose or change shipment method" and the row below for payment method.
Have tried to change CSS in my override but if I change style for the link it affects entire site. Doesn´t seem to have an a-class of it´s own. So I´t seems as if I have to enter a <br> or something in the php page (default_pricelist.php) to get som spacing under. But looking at this code I gets a little lost. I´m no php-wiz :-).

Thank´s for any help!

Djirko

Are you using default template or already using some overrides? Post a pic of how you want to look it like, so i could try to help you.

jenkinhill

Look for the following in default_pricelist.php around line 360

<tr class="sectiontableentry1">
   <?php if (!$this->cart->automaticSelectedPayment) { ?>

   <td colspan="4" align="left">
      <?php echo $this->cart->cartData['paymentName']; ?>

You can either add another class identifier or id to the <tr> and then use css, or add a <br /> after  <td colspan="4" align="left">

Remember to use your edited file as a template override.
Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

t68

Thank´s Jenkin! The <br/> in the right place did the trick for me!