Hi Mr. G, sure, here we go...
1) Turn off the category caching, as it's
buggy. You can do so from 'Modules > Flyout menus'.
2) skin/smart_template/css/altskin.css
Replace...
Code:
font.bread-crumb {
font-size: 1.0em;
}
with...
Code:
font.bread-crumb {
font-size: 1.0em;
line-height: 1.5em;
}
3) skin/smart_template/customer/authbox.tpl
Remove
class="last" from ...
Code:
<li><a href="help.php?section=Password_Recovery" title="{$lng.lbl_forgot_password|escape}" class="last">{$lng.lbl_forgot_password}</a></li>
Then after, insert...
Code:
<li><a href="xxxx.html" title="xxxx" class="last">xxxx</a></li>
4) You can use any of the default jQuery
easing styles.
This is the carousel plugin used if you want to customise further.
Just a heads up, I recently noticed is that the carousel slows down considerably in IE if you have Cufon enabled in the smart template settings...
To remedy that, do the following...
1) skin/smart_template/custom/featured_carousel.tpl
Change...
Code:
<h3><a href="product.php?productid={$f_products[product].productid}&featured=Y">{$f_products[product].product}</a></h3>
To...
Code:
{if $config.Smart_Template.st_cufon eq "Y"}<h4>{else}<h3>{/if}<a href="product.php?productid={$f_products[product].productid}&featured=Y">{$f_products[product].product}</a>{if $config.Smart_Template.st_cufon eq "Y"}</h4>{else}</h3>{/if}
2) skin/smart_template/custom/css/common.css
After...
Code:
ul#feat_carousel .feat_block h3 { width: 90%; height: 60px; margin: 0; padding: 0; font-weight: bold; font-size: 1.2em; }
ul#feat_carousel .feat_block h3 a { text-decoration: none; }
Insert...
Code:
ul#feat_carousel .feat_block h4 { width: 90%; height: 60px; margin: 0; padding: 0; font-weight: bold; font-size: 1.2em; }
ul#feat_carousel .feat_block h4 a { text-decoration: none; }