
Originally Posted by
yoyoben
I'm sure its been gone over, but I can't wade through 127 pages to see it.
First of all, great template, its amazing.
If you head to travoltron.com/store you'll see there is a Link in the EZ pages header for the accompanying forum. (I did not use phpBB, thus, I did not integrate it with zc.)
I'd love for this link to be in the same bar that shows the login, my account, checkout, etc.
I've pored over the stylesheet, but I'm at a loss for how to go about that.
I'd also love to add another button to link the blog.
Thanks everyone. I'm digging zc pretty hard, and loving the community effort. Everyone here rocks!
There's no way that could be done with the stylesheet. 
You'd have to open up includes/modules/sideboxes/cherry_zen/information.php
and add that link manually.
If you want it at the bottom of the box, just add it after this:
Code:
if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK == 'true') {
$information[] = '<a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a>';
}
Just make it like a regular link (don't worry about php):
Code:
<a href="http://travoltron.com/forum/">Name of link here</a>
Bookmarks