Results 1 to 6 of 6
  1. #1
    Join Date
    Oct 2009
    Location
    West Midlands, UK
    Posts
    23
    Plugin Contributions
    0

    Default How to move text in the Information side box?

    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

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: How to move text in the Information side box

    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>';
      } 

  3. #3
    Join Date
    Oct 2009
    Location
    West Midlands, UK
    Posts
    23
    Plugin Contributions
    0

    Default Re: How to move text in the Information side box

    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

  4. #4
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: How to move text in the Information side box

    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 stylesheet
    Code:
    #bannerbox2Content {
        padding-left: 0;
        padding-top: 0;
        }
    The header may have a similar issue, or it may be something else. Not looking now, going off to sleep.

  5. #5
    Join Date
    Oct 2009
    Location
    West Midlands, UK
    Posts
    23
    Plugin Contributions
    0

    Default Re: How to move text in the Information side box

    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

  6. #6
    Join Date
    Oct 2009
    Location
    West Midlands, UK
    Posts
    23
    Plugin Contributions
    0

    Default Re: How to move text in the Information side box

    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

 

 

Similar Threads

  1. how to move link from more information to information side box?
    By mrobson86 in forum General Questions
    Replies: 1
    Last Post: 21 Sep 2011, 09:01 PM
  2. Text in Information side box
    By lchurch in forum Basic Configuration
    Replies: 1
    Last Post: 14 Jan 2010, 11:45 PM
  3. How to move only one of the side box?
    By Elverdugo0 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 13 May 2009, 06:42 PM
  4. Side box text move??
    By vik007 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 9 Mar 2008, 03:36 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg