Quote Originally Posted by Andy_M View Post
Thanks.. I found it.

Had a <b> without a </b> in my modified
blank_sidebox_defines.php file.

in case anyone wants it.. I have added Login-My Account-Contact Us links in the side menu under the Social Media icons...
Untitled.jpg

by changing the file
/includes/languages/english/extra_definitions/dover_fine/blank_sidebox_defines.php

file to be...

Code:
define('BOX_HEADING_BLANK_SIDEBOX', 'Blank Sidebox Header');
if ($_SESSION['customer_id']) {
  define('TEXT_BLANK_SIDEBOX', 
       '<a href="https://www.facebook.com/pages/XXXXXXXXX" target="_blank"><i class="fa fa-facebook"></i></a>
        <a href="https://twitter.com/XXXXXXXX" target="_blank"><i class="fa fa-twitter"></i></a>
        <a href="https://www.pinterest.com/XXXXXXXXXX" target="_blank"><i class="fa fa-pinterest"></i></a>
        <a href="https://www.youtube.com/user/XXXXXXXXXX" target="_blank"><i class="fa fa-youtube"></i></a>
        <br><br>
        <b><a href="' . zen_href_link(FILENAME_LOGOFF, '', 'SSL') . '">  ' . HEADER_TITLE_LOGOFF . '  </a>
        - <a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . HEADER_TITLE_MY_ACCOUNT . '  </a>
        - <a href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">Contact Us</a></b>
        ');
      } else {        
  define('TEXT_BLANK_SIDEBOX', 
       '<a href="https://www.facebook.com/pages/XXXXXXXXX" target="_blank"><i class="fa fa-facebook"></i></a>
        <a href="https://twitter.com/XXXXXXXX" target="_blank"><i class="fa fa-twitter"></i></a>
        <a href="https://www.pinterest.com/XXXXXXXXXX" target="_blank"><i class="fa fa-pinterest"></i></a>
        <a href="https://www.youtube.com/user/XXXXXXXXXX" target="_blank"><i class="fa fa-youtube"></i></a>
        <br><br>
        <b><a href="' . zen_href_link(FILENAME_LOGIN, '', 'SSL') . '">  ' . HEADER_TITLE_LOGIN . '</a> 
        - <a href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">Contact Us</a></b>
        ');
    }
I found it useful to have these links here since they do not show on the main page with only the slideshow.

Thanks for such a great template Anne!!!

;)
I am happy that you figured it out and posted your solution ;) With the responsive design you do have to be very careful about matching up closing html tags!

Thanks,

Anne