Re-designing one of our sites and have come across something very irritating (to the online user, not me; I'm always irritated )
Here's the test site: http://www.motorcycleintercoms.co.uk/
We have a background image that sets the shadow across the top of the screen, set to repeat-x; which works fine.
Once the site is loaded, clicking on any product or fragment links anywhere work fine.
But clicking on any of the marketing links (Best Sellers, New Products, Previously Viewed) causes the screen to re-draw, filling the background with the background image, before the repeat-x; kicks in and restores the background to just one line across the top.
Apart from the sheer horrid aesthetics of this - if one was photo-epileptic it could cause ructions!
Anyone any ideas how to suppress or fix this please?
Here's the (standard V11) code from the Best Sellers box:
Thanks
Sean
Here's the test site: http://www.motorcycleintercoms.co.uk/
We have a background image that sets the shadow across the top of the screen, set to repeat-x; which works fine.
Once the site is loaded, clicking on any product or fragment links anywhere work fine.
But clicking on any of the marketing links (Best Sellers, New Products, Previously Viewed) causes the screen to re-draw, filling the background with the background image, before the repeat-x; kicks in and restores the background to just one line across the top.
Apart from the sheer horrid aesthetics of this - if one was photo-epileptic it could cause ructions!
Anyone any ideas how to suppress or fix this please?
Here's the (standard V11) code from the Best Sellers box:
Code:
<p class="text_product_small_info_heading"> <a rel="nofollow" href="<actinic:variable name="SearchCGIURL" />?PRODREF=<actinic:variable Name="ProductID" />&NOLOGIN=1<actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e">&SHOP=<actinic:variable name="ShopID" /></actinic:block>"><actinic:variable name="ProductName" /></a> </p> <div class="product_image_cost"> <actinic:block if="%3cactinic%3avariable%20name%3d%22ProductImageFileName%22%20%2f%3e%20%21%3d%20%22%22"> <a rel="nofollow" href="<actinic:variable name="SearchCGIURL" />?PRODREF=<actinic:variable Name="ProductID" />&NOLOGIN=1<actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e">&SHOP=<actinic:variable name="ShopID" /></actinic:block>"> <img style="border: 0;" src="<actinic:variable name="ProductImageFileName" />" width="80" alt="<actinic:variable name="ProductName" encoding="strip"/>"title="<actinic:variable name="ProductName" encoding="strip"/>" title="<actinic:variable name="ProductName" encoding="strip"/>" /></a> </actinic:block> </div> <p class="text_product_small_info_price"> <Actinic:PRICES PROD_REF="<actinic:variable Name="ProductID" />" RETAIL_PRICE_PROMPT="<Actinic:Variable Name="ProductPriceDescription"/>"><actinic:variable value="Marketing Price List" name="PriceListRetail" /></Actinic:PRICES> </p>
Sean
Comment