Results 1 to 2 of 2
  1. #1

    Default Move Success Message From Above to Below Header

    I got my shopping cart set up to display the success message after a customer adds an item to the shopping cart rather than going to the shopping cart page. The success message appears on the very top of the page. Is there a way to bring it down below the header and nav bar? I currently have my nav bar below the header.

    I checked tpl_header.php, but I'm not sure which set of codes I needed to move. Any ideas?

  2. #2

    Default Re: Move Success Message From Above to Below Header

    OK, I figured it out. I went back into MYTEMPLATE/common/tpl_header.php and I I took this code:

    <?php
    // Display all header alerts via messageStack:
    if ($messageStack->size('header') > 0) {
    echo $messageStack->output('header');
    }
    if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
    echo htmlspecialchars(urldecode($_GET['error_message']));
    }
    if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
    echo htmlspecialchars($_GET['info_message']);
    } else {

    }
    ?>

    ...and I moved it to the bottom of the file. Now the success message appears below the nav bar.

 

 

Similar Threads

  1. v151 Whitespace below header image and above mega menu
    By welchyboy in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 25 Apr 2013, 04:12 PM
  2. move message box in contact us above other text
    By Sushigal in forum Templates, Stylesheets, Page Layout
    Replies: 16
    Last Post: 3 Mar 2010, 01:35 PM
  3. Blank space above and below the header logo
    By sonduarte in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 8 Jan 2010, 08:54 PM
  4. Black above/below header image
    By twistmachine in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 25 Nov 2008, 01:24 PM
  5. Eliminate space above columnleft and below header
    By gingertea in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 28 Jul 2007, 02:13 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