I would like to re-iterate everybody else; Fantastic template.
I would like to 'squash' the template so that everything is closer together.
andy
I would like to re-iterate everybody else; Fantastic template.
I would like to 'squash' the template so that everything is closer together.
andy
Learning Fast.
Eden Craft Supplies
I think that what you want to do is lessen or remove the padding-top and padding-bottom on the various elements in the left hand column. I would recommend using firefox or chrome and the web developer tools to isolate the exact lines of the files that need to be changes.
Thanks,
Anne
I am trying to add a link to the more information side box that takes me to the log in page
the following is what i inserted but it isn't working.I am no programmer but I thought I would give this a shot.
ether i am missing something I need to add to another page, the programming isn't right or both. Can you help?
Code:this was added to english.php // information box text in sideboxes/more_information.php - were TUTORIAL_ define('BOX_HEADING_MORE_INFORMATION', 'Wholesale Information'); define('BOX_LOGIN_REGISTER', 'Login/Register'); define('BOX_INFORMATION_PAGE_2', 'Wholesale Account Information'); define('BOX_INFORMATION_PAGE_3', 'Wholesale Account Requirements'); define('BOX_INFORMATION_PAGE_4', 'Minimum Orders'); this was added to more_information.php // test if links should display if (DEFINE_LOGIN_REGISTER_STATUS <= 1) { $more_information[] = '<a href="' . zen_href_link(FILENAME_index.php?main_page=login) . '">' . $pointer . BOX_LOGIN_REGISTER . '</a>'; } if (DEFINE_PAGE_2_STATUS <= 1) { $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_2) . '">' . $pointer . BOX_INFORMATION_PAGE_2 . '</a>'; } if (DEFINE_PAGE_3_STATUS <= 1) { $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_3) . '">' . $pointer . BOX_INFORMATION_PAGE_3 . '</a>'; } if (DEFINE_PAGE_4_STATUS <= 1) { $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_4) . '">' . $pointer . BOX_INFORMATION_PAGE_4 . '</a>'; }
well I reconfigured the more information php to this
the link box won't show up though.Code:// test if links should display $more_information[] = '<a href="' . zen_href_link(FILENAME_index.php?main_page=login) . '">' . $pointer . BOX_LOGIN_REGISTER . '</a>'; if (DEFINE_PAGE_2_STATUS <= 1) { $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_2) . '">' . $pointer . BOX_INFORMATION_PAGE_2 . '</a>'; } if (DEFINE_PAGE_3_STATUS <= 1) { $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_3) . '">' . $pointer . BOX_INFORMATION_PAGE_3 . '</a>'; } if (DEFINE_PAGE_4_STATUS <= 1) { $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_4) . '">' . $pointer . BOX_INFORMATION_PAGE_4 . '</a>'; }
Learning Fast.
Eden Craft Supplies
Never mind on my earlier request.
I figured out the problem was within the supersize script and modified this script so it now allows passing another parameter in the slides array to indicate the banner setting for opening in a new window or not.
Overall, very pleased with this template! Thanks for the hard work that you do Anne.