Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
This article in the Tutorials/FAQ section may help;
article=135
Thank You!
I must of missed something last night in my efforts to resolve the "image path showing up as well" in the Categories Content header.
Thanks Again Clyde
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
open includes/templates/cold_steel/css/stylesheet.css
find the follwoing declaration and delete the highlighted portion
#productDescription ul li {
margin-right:2px;
padding:2px 0 2px 17px;
list-style: none;
font-size: 1.1em;
}
Thanks for the very fast support. Thanks that worked. The font size of the bulleted items is now larger than the text in the body of the description is there a way to make it the same size?:smile:
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
Liamv
Thanks for the very fast support. Thanks that worked. The font size of the bulleted items is now larger than the text in the body of the description is there a way to make it the same size?:smile:
remove the font-size rule:
#productDescription ul li {
margin-right:2px;
padding:2px 0 2px 17px;
list-style: none;
font-size: 1.1em;
}
Re: Cold Steel Template Support Thread
Hi Clyde im using this template for my new website: lemy.co.uk and it looks great...but i would like my customers to navigate better so im trying to install the CSS Flyout menu 1.5 from here:
http://www.zen-cart.com/forum/showthread.php?t=58629
The problem is that the tpl_header from the cold_steel template is modified so in this case its says there in the readme that i should add this code to the tpl_header :
PHP Code:
<!--bof-drop down menu display-->
<?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_drop_menu.php');?>
<!--eof-drop down menu display-->
<div class="clearBoth"></div>
I've done this and i double check the installation and site is messed up. Is there any way that i can integrate the flyout menu into your template?
Also i would like to know how to add a few extra buttons in the navbar for the rss feed,etc, like you have on you website.
Cheers!
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
andreitero
Hi Clyde im using this template for my new website: lemy.co.uk and it looks great...but i would like my customers to navigate better so im trying to install the CSS Flyout menu 1.5 from here:
http://www.zen-cart.com/forum/showthread.php?t=58629
The problem is that the tpl_header from the cold_steel template is modified so in this case its says there in the readme that i should add this code to the tpl_header :
PHP Code:
<!--bof-drop down menu display-->
<?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_drop_menu.php');?>
<!--eof-drop down menu display-->
<div class="clearBoth"></div>
I've done this and i double check the installation and site is messed up. Is there any way that i can integrate the flyout menu into your template?
Also i would like to know how to add a few extra buttons in the navbar for the rss feed,etc, like you have on you website.
Cheers!
Where do you want the menu to go?
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
Where do you want the menu to go?
Thanks for the quick reply. I want it positioned just bellow the NavBreadCrumb, about 0.5 em distance from it.
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
andreitero
Thanks for the quick reply. I want it positioned just bellow the NavBreadCrumb, about 0.5 em distance from it.
open includes/templates/cold_steel/common/tpl_main_page.php
find the following section of code:
PHP Code:
<!-- bof breadcrumb -->
<?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_home_page) ) { ?>
<div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
<?php } ?>
<!-- eof breadcrumb -->
just below this add the folllowing:
PHP Code:
<!--bof-drop down menu display-->
<?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_drop_menu.php');?>
<!--eof-drop down menu display-->
<div class="clearBoth"></div>
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
open includes/templates/cold_steel/common/tpl_main_page.php
find the following section of code:
PHP Code:
<!-- bof breadcrumb -->
<?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_home_page) ) { ?>
<div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
<?php } ?>
<!-- eof breadcrumb -->
just below this add the folllowing:
PHP Code:
<!--bof-drop down menu display-->
<?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_drop_menu.php');?>
<!--eof-drop down menu display-->
<div class="clearBoth"></div>
I have done that, but doesnt seem to work... you can look at it now:
www.lemy.co.uk
i think its interfering with the navbar from the template
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
andreitero
I have done that, but doesnt seem to work... you can look at it now:
www.lemy.co.uk
i think its interfering with the navbar from the template
I just did this same thing on my test site and everything works as expected.
have you uploaded all the files for the menu mod.
also download and install the Debug Error Logging Utility available in the downloads section.
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
I just did this same thing on my test site and everything works as expected.
have you uploaded all the files for the menu mod.
also download and install the Debug Error Logging Utility available in the downloads section.
Ah thanks a lot clyde i done exactly what u said and it was a silly typo.
I have one more question:
as most of the buttons in the navbar are now covered by the flyout menu, im thinking to remove the 'doubles' from the navbar and add some best selling categories of my choice. How do u think i should do that?
Cheers!