Documentation You are here: start » v » 0.6.0 » docs » upgrading » 0.2.6

Upgrading to v0.2.6

Note: This page is geared towards upgrading from v0.2.5. Please make sure you view all the version notes for versions you may be skipping (ie. from 0.2.4 → 0.2.6, make sure you read the 0.2.5 notes).

Please make sure you review the changelog before upgrading.

Theme "Standard": Minor CSS Tweaks

As mentioned in the changelog, the floating and padding of a few elements have been modified. The net result is a gain of 5px in padding on label.fc_label_left elements. If this causes problems, simply add a CSS rule to override the new behavior:

<!-- Your "standard" theme CSS -->
<link rel="stylesheet" href="https://^^store_domain^^/themes/standard/styles.css" type="text/css" media="screen" charset="utf-8" />
<!-- The override to maintain v0.2.5 declarations -->
<style type="text/css" media="screen">
	/* <![CDATA[ */
	#fc_checkout_container li.fc_row,
	#fc_receipt_container li.fc_row {
		text-align:right;
	}
	#fc_checkout_container label.fc_label_left,
	#fc_receipt_container span.fc_text_label {
		padding-right:5px;
	}
	/* ]]> */
</style>

That's it. Make sure your declarations come after the standard css link, otherwise they won't override it.

Purchase Orders

If you want to use POs as a payment method, you shouldn't have to tweak your existing CSS much. Just use Firebug to determine the classes, and the Firefox Web Developer toolbar to tweak the CSS.

Site Tools