News:

Support the VirtueMart project and become a member

Main Menu

Template Problems

Started by RYH Webdesign, February 04, 2013, 10:32:50 AM

Previous topic - Next topic

RYH Webdesign

nothing

PRO

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.



PRO

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';
         }





RYH Webdesign

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.