Re: Cork Board Template Support Thread
Quote:
Originally Posted by
mzma01
I add the banner through tools & banner manager. Then I copy & paste the html code for the link.
make sure you are entering the information in the correct sidebox ( bannerboxall )
Re: Cork Board Template Support Thread
It is a correct side box. If I take out one of the 6 banner, then seventh banner that the one i tried to slot in can only appear. It seems to me that it had been setup to a certain number of banners.:unsure:
Re: Cork Board Template Support Thread
Quote:
Originally Posted by
mzma01
It is a correct side box. If I take out one of the 6 banner, then seventh banner that the one i tried to slot in can only appear. It seems to me that it had been setup to a certain number of banners.:unsure:
This thread is for template specific questions.
setting up a bannerbox is not specific to this template.
If you've made modifications to the sidebox then You'll have to figure out what you did or didn't do with your edits.
Re: Cork Board Template Support Thread
Hello Clyde
Thanks for this template, it's great! Am using it for a brand new site that's not quite up and running yet. Using Zen Cart v1.3.9e and this was a new install on Wednesday this week.
Am having a couple of minor problems tweaking it for our use in the UK and have not yet been able to find how to make bullet points show.
In the Categories/New product window am entering html:
<p>Easy to install, but if in any doubt please consult a qualified electrician.</p><ul><li>IP67 (weatherproof)</li><li>Tempered Glass</li><li>2m Tough Rubber Cable</li><li>Die cast Aluminium Ground Mounting Spike</li><li>Wall mounting Bracket</li><li>Dimensions (mm):</li></ul>
But list is missing bullet points when I upload.
http://www.petershed.co.uk/index.php...&products_id=5
I guess its something in the css, but havent worked it out yet and advice would be appreciated.
Many thanks
Natalie
Re: Cork Board Template Support Thread
Quote:
Originally Posted by
BrightGreen
Hello Clyde
Thanks for this template, it's great! Am using it for a brand new site that's not quite up and running yet. Using Zen Cart v1.3.9e and this was a new install on Wednesday this week.
Am having a couple of minor problems tweaking it for our use in the UK and have not yet been able to find how to make bullet points show.
In the Categories/New product window am entering html:
<p>Easy to install, but if in any doubt please consult a qualified electrician.</p><ul><li>IP67 (weatherproof)</li><li>Tempered Glass</li><li>2m Tough Rubber Cable</li><li>Die cast Aluminium Ground Mounting Spike</li><li>Wall mounting Bracket</li><li>Dimensions (mm):</li></ul>
But list is missing bullet points when I upload.
http://www.petershed.co.uk/index.php...&products_id=5
I guess its something in the css, but havent worked it out yet and advice would be appreciated.
Many thanks
Natalie
Sorry for the delayed response.
My mom passed away last weekend and I had to travel to attend her funeral. I'll give you a more detailed response when I return home early next week.
Re: Cork Board Template Support Thread
Quote:
Originally Posted by
BrightGreen
Hello Clyde
Thanks for this template, it's great! Am using it for a brand new site that's not quite up and running yet. Using Zen Cart v1.3.9e and this was a new install on Wednesday this week.
Am having a couple of minor problems tweaking it for our use in the UK and have not yet been able to find how to make bullet points show.
In the Categories/New product window am entering html:
<p>Easy to install, but if in any doubt please consult a qualified electrician.</p><ul><li>IP67 (weatherproof)</li><li>Tempered Glass</li><li>2m Tough Rubber Cable</li><li>Die cast Aluminium Ground Mounting Spike</li><li>Wall mounting Bracket</li><li>Dimensions (mm):</li></ul>
But list is missing bullet points when I upload.
http://www.petershed.co.uk/index.php...&products_id=5
I guess its something in the css, but havent worked it out yet and advice would be appreciated.
Many thanks
Natalie
open includes/templates/cork_board/css/product_info.css
add the following declaration:
#productDescription ul li{
list-style-type: disc;
}
Re: Cork Board Template Support Thread
The bullet points now work perfectly, thank you so much Clyde.
Re: Cork Board Template Support Thread
Quote:
Originally Posted by
BrightGreen
The bullet points now work perfectly, thank you so much Clyde.
Glad you got it sorted
Re: Cork Board Template Support Thread
Hello again Clyde
Our new site is coming along nicely now, but I've been asked to add a link to a Forum in the Header. This could be either below Contact Us on the left hand side as part of the existing list of options, or on the right between Search and the Date (whichever is the easier!). I've fiddled about a bit, but not managed to crack it yet.
Our site is http://www.petershed.co.uk/
The Forum exists but is not yet up & running properly, but the path would be as above + forum/
Any advice would be greatly appreciated.
Many Thanks
Natalie
Re: Cork Board Template Support Thread
Quote:
Originally Posted by
BrightGreen
Hello again Clyde
Our new site is coming along nicely now, but I've been asked to add a link to a Forum in the Header. This could be either below Contact Us on the left hand side as part of the existing list of options, or on the right between Search and the Date (whichever is the easier!). I've fiddled about a bit, but not managed to crack it yet.
Our site is
http://www.petershed.co.uk/
The Forum exists but is not yet up & running properly, but the path would be as above + forum/
Any advice would be greatly appreciated.
Many Thanks
Natalie
open includes/templates/cork_board/common/tpl_header.php
find the following section of code and add the link to your forum where you would like it to appear.
PHP Code:
<div id="navMainWrapper">
<div id="navMain">
<ul>
<li<?php echo (($this_is_home_page) ? ' class="current">' : '>');?><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<?php if ($_SESSION['customer_id']) { ?>
<li<?php echo (($current_page_base == 'logoff') ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<li<?php echo (($current_page_base == 'login') ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
<?php } } ?>
<li<?php echo (($current_page_base == 'contact_us') ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'SSL'); ?>"><?php echo BOX_INFORMATION_CONTACT; ?></a></li>
<li<?php echo (($current_page_base == 'account') ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li<?php echo ((in_array($current_page_base,explode(",",'checkout_shipping,checkout_payment,checkout_confirmation,checkout_success'))) ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php }?>
<li<?php echo (($current_page_base == 'shopping_cart') ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
</ul>
</div>
<!--eof-navigation display-->
</div>