Quote Originally Posted by countrycharm View Post
Thank you Clyde for clearing that up for me. I understand now. One more thing and I will let you rest. You said I could add this code to the bottom of my style sheet #linksboxContent a {
text-align: center;
}

But it still does not put my link in the center. Any more suggestions on how to fix this problem. Thank you again
You can change it to

#linksboxContent span {
text-align: center;
}

Now you will have to edit includes/templates/luck_charm/tpl.links_select.php

Find the following lines of code: add the highlighted changes

if (BOX_DISPLAY_VIEW_ALL_LINKS == 'true') {
$content .= '<br /><span><a href="' . zen_href_link(FILENAME_LINKS, '', 'NONSSL') . '">' . BOX_INFORMATION_VIEW_ALL_LINKS . '</a></span>';
}
if (BOX_DISPLAY_SUBMIT_LINK == 'true') {
$content .= '<br /><span><a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, '', 'SSL') . '">' . BOX_INFORMATION_LINKS_SUBMIT . '</a></span></div>';
}

Save the file and upload to your server