Quote Originally Posted by countrycharm View Post
clydejones I hope you are doing well. I have a 2 questions for you if you don't mind. I added my logo box and my logo picture is showing. How do I center it, and how do I add a hyper-link . I have read what to do but I seem not to be able to get it to work. Thank you
How do I center it:

add the following to your stylesheet.css
#logosideboxContent { text-align: center;}


how do I add a hyper-link:
Open includes/languages/english/extra_definitions/logo_sidebox_defines.php
Change the highlighted portion to suit you needs.

define('LOGO_SIDEBOX_LINK', 'http://your_link.com/');

Now open includes/templates/YOUR_TEMPLATE/sideboxes/tpl_logo_sidebox.php

uncomment this line of code: remove the highlighted portion
//$logoimage = '<a href="' . LOGO_SIDEBOX_LINK . '">' . zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT) . '</a>';

comment out this line of code: add the highlighted portion
//$logoimage = zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT);


Save everything and upload to your server.