Trying to delete a BR in the template

If you are runnig Joomla 3.x and Virtuemart 3.x please post to this forum your questions or support tickets about One Page Checkout

Trying to delete a BR in the template

Postby removed1623589245 » Mon Dec 22, 2014 6:13 pm

Hello,

I installed VM 3 and I'm using the template Rockettheme Blue.
In this template there's a Shipping Box where you can choose a shipping/transport option.
The choises are standard seperated not only by a
Code: Select all
<div>
but also with a
Code: Select all
<BR>
...
I would like to remove this break from the template and seperate the items just with
Code: Select all
<div>
.
I searched and found the line
Code: Select all
<?php echo $shipping_method_html; // this prints all your shipping methods from checkout/list_shipping_methods.tpl.php ?>
in the files "onepage.logged.tpl.php" and "onepage.unlogged.tpl.php".
This file "list_shipping_methods.tpl.php" can't be found in the Rockettheme Blue template, but I did find it in the the Clean Simple template.
I copied over the file to the Rockettheme Blue template /overrides/list_shipping_methods.tpl.php and deleted the
Code: Select all
<br>
.
It doesn't seem to help...

Also tried :
- Editing the file "list_shipping_methods.tpl.php" in the Clean Simple theme. -> Doesn't help
- Copying the file in a folder /checkout/list_shipping_methods.tpl.php. -> Doesn't help



Can anyone please help me???
removed1623589245
 
Posts: 3
Joined: Mon Dec 22, 2014 6:09 pm

Re: Trying to delete a BR in the template

Postby admin » Tue Dec 23, 2014 2:39 pm

hello, i am afraid that the BRs come from core VM files, but you still can use this:

- if inside the shipping section, you can get rid of all BRs with this:

#vmMainPageOPC #ajaxshipping br {
display: none;
}

it has the same effect as if you'd delete them.

best regards, stan
admin
Site Admin
 
Posts: 2708
Joined: Wed Jan 06, 2010 11:43 pm


Return to One Page Checkout for Virtuemart 3 on Joomla 3.x