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

Upgrading to v0.2.8

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

Please make sure you review the 0.2.8 changelog before upgrading.

Possible Action Required

v0.2.8 added cellspacing=“0” cellpadding=“0” to table#fc_cart_table, which is output in the ^^cart^^. Most people will probably find this an improvement, but if you really want some spacing between your cells, you can modify your CSS accordingly. The cellpadding can obviously be tweaked with some simple, like this:

table#fc_cart_table td {
	padding:4px;
}

The cellspacing CSS might be a bit unfamiliar to some:

<!-- 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 some "cellspacing" -->
<style type="text/css" media="screen">
	/* <![CDATA[ */
	table#fc_cart_table {
		border-collapse: collapse;
		border-width: 5px; 
	}
	/* ]]> */
</style>

More info can be found at QuirksMode.com, or some random forum.

Tweak that to your liking, and make sure you cross-browser test, just to make sure. Also, make sure your declarations come after the standard css link, otherwise they won't override it.

Please let us know in the forums if you have strong feelings about this change.

Site Tools