Hi
Can someone please tell me how to move the position of the text in the side box information, I want to move text up or down, for example move the text, shipping and returns to the bottom of the information box.
Thanks
Hi
Can someone please tell me how to move the position of the text in the side box information, I want to move text up or down, for example move the text, shipping and returns to the bottom of the information box.
Thanks
Edit /includes/modules/sideboxes/your_template/information.php.
Each link has a separate block of code, and you can move those to the desired order.PHP Code:if (DEFINE_SHIPPINGINFO_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>';
}
Always easy when you know how, Thanks Glenn.
I like your website, you have some nice pieces, our site is in the process of being built and on a similar line i.e. jewellery but modern.
I have another problem which you or someone else may have the answer to and that is cross browser compatibility, the flash on the home page looks ok in IE but in Firefox the flash header shrinks in width and the flash movie in the side box moves out of the box i.e. to the right, the site is in its early stages and I am trying different things at the moment, please have a look@, www.1stopjewellery.co.uk.
Thanks again, David
I don't use flash so can't tell you anything about that, but the sidebox alignment is a simple CSS issue. The standard sidebox content padding is pushing the flash object away from top & left. To fix this for just that sidebox, add to your stylesheetThe header may have a similar issue, or it may be something else. Not looking now, going off to sleep.Code:#bannerbox2Content { padding-left: 0; padding-top: 0; }
Hi Glenn
I Think I’ve cured the problem of header and side box alignment of the flash movie in different browsers, I just changed the width and height to 100% as below and it fixed the problem, don’t know if it’s the right way to-do it but it seems to work.
For reference the file that contains the flash code is; includes\templates\mytemplate\common\tpl_header.php
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0
" width="100%" height="100%">
<param name="movie" value="images/header.swf" />
<param name="quality" value="high" />
<param name="allowScriptAccess" value="always" />
<param name="wmode" value="transparent">
<embed src="images/header.swf"
quality="high"
type="application/x-shockwave-flash"
WMODE="transparent"
width="100%"
height="100%"
pluginspage="http://www.macromedia.com/go/getflashplayer"
allowScriptAccess="always" />
</object>
There is one small problem that I know is being caused by the flash header and the SSL.
When you click login I get the security warning box saying; do you want to view only the webpage that was delivered securely. This only happens in IE I am not sure how to cure this so if anyone as any suggestions it would be most appreciated.
David, www.1stopjewellery.co.uk
OK I have found the fix for the IE security warring, I just changed the http:// to https:// and bingo it does not show the security warning when you click login.
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0
" width="100%" height="100%">
<param name="movie" value="images/flash/header.swf" />
<param name="quality" value="high" />
<param name="allowScriptAccess" value="always" />
<param name="wmode" value="transparent">
<embed src="images/flash/header.swf"
quality="high"
type="application/x-shockwave-flash"
WMODE="transparent"
width="100%"
height="100%"
pluginspage="https://www.macromedia.com/go/getflashplayer"
allowScriptAccess="always" />
</object>
David