VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: RYH Webdesign on February 04, 2013, 10:32:50 AM

Title: Template Problems
Post by: RYH Webdesign on February 04, 2013, 10:32:50 AM
nothing
Title: Re: Template Problems
Post by: PRO on February 04, 2013, 13:25:06 PM
Quote from: RYH Webdesign on February 04, 2013, 10:32:50 AM
I have installed Virteumart and have made some changes with the template, the problem I have is that the button's 'Confirm and Cancel on the billing and shipping address have changed colour and font, these should be the same as the buttons on the other pages (white font).
http://www.foboz.co.uk/
Any help would be great.
Thanks



get the css class assigned to it
http://forum.virtuemart.net/index.php?topic=102850.0

then add that to your css.


Title: Re: Template Problems
Post by: PRO on February 04, 2013, 18:06:43 PM
edit_address.php

I think it adds a class based on if the info is finished or not

   if (strpos ($this->fTask, 'checkout') || $this->address_type == 'ST') {
            $buttonclass = 'default';
         }
         else {
            $buttonclass = 'button vm-button-correct';
         }




Title: Re: Template Problems
Post by: RYH Webdesign on June 29, 2013, 20:43:21 PM
Quote from: PRO on February 04, 2013, 13:25:06 PM
Quote from: RYH Webdesign on February 04, 2013, 10:32:50 AM
I have installed Virteumart and have made some changes with the template, the problem I have is that the button's 'Confirm and Cancel on the billing and shipping address have changed colour and font, these should be the same as the buttons on the other pages (white font).
Any help would be great.
Thanks



get the css class assigned to it
http://forum.virtuemart.net/index.php?topic=102850.0

then add that to your css.