layout issue Dutch language

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Jan 28, 2013 9:03 am
Reply with quote
Report this post
Hi,

a small layout issue the should be fixed in the next version.

check this link in a different language, for example dutch: http://demo3.reskin-xl.nl/index.php?option=com_virtuemart&view=user&task=editaddresscheckout&addrtype=BT&lang=en

the buttons are not inline
now is my question how can I fix this with css until it is fixed in the next update?
User avatar
Senior Boarder

GK User
Mon Jan 28, 2013 9:10 am
Reply with quote
Report this post
screenshot
User avatar
Senior Boarder

GK User
Mon Jan 28, 2013 10:05 am
Reply with quote
Report this post
this how I fixed it for now:

/templates/gk_bikestore/html/com_virtuemart/user/edit_address.php - row128
Code: Select all
<span class="checkout-buttons"><!-- ksdesign -->
<button class="<?php echo $buttonclass ?>" type="submit" onclick="javascript:return callValidatorForRegister(userForm);"
title="<?php echo JText::_ ('COM_VIRTUEMART_REGISTER_AND_CHECKOUT'); ?>"><?php echo JText::_ ('COM_VIRTUEMART_REGISTER_AND_CHECKOUT'); ?></button>
<?php if (!VmConfig::get ('oncheckout_only_registered', 0)) { ?>
<button class="<?php echo $buttonclass ?>" title="<?php echo JText::_ ('COM_VIRTUEMART_CHECKOUT_AS_GUEST'); ?>" type="submit"
onclick="javascript:return myValidator(userForm, '<?php echo $this->fTask; ?>');"><?php echo JText::_ ('COM_VIRTUEMART_CHECKOUT_AS_GUEST'); ?></button>
<?php } ?>
<button class="default" type="reset"
onclick="window.location.href='<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=' . $rview); ?>'"><?php echo JText::_ ('COM_VIRTUEMART_CANCEL'); ?></button>
<span><!-- ksdesign -->



/templates/gk_bikestore/html/com_virtuemart/user/edit_address.php - row145
Code: Select all
<span class="checkout-buttons"><!-- ksdesign -->
<button class="<?php echo $buttonclass ?>" type="submit"
onclick="javascript:return myValidator(userForm, '<?php echo $this->fTask; ?>');"><?php echo JText::_ ('COM_VIRTUEMART_SAVE'); ?></button>
<button class="default" type="reset"
onclick="window.location.href='<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=' . $rview); ?>'"><?php echo JText::_ ('COM_VIRTUEMART_CANCEL'); ?></button>
<span><!-- ksdesign -->


/templates/gk_bikestore/css/override.css
Code: Select all
/* buttons checkout */
.checkout-buttons {display: block;}
User avatar
Senior Boarder


cron