Re: Cold Steel Template Support Thread
Hi,
I was trying to edit my post again, but it lapse.
You have to enable cold_steel template first if you haven't yet.
Admin>Tools>Template Selection
then
Admin>Tools>Layout Boxes Controller
at the bottom click on reset.
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
cclcc
Hi clydl,
I found the file tpl_header.php. and knew that the location of navigation bar is determined by <div id="navMainWrapper">. The current definition of #navMainWrapper in stylesheet.css is as following:
#navMainWrapper {
position:absolute;
left: 201px;
top: 90px;
font-size: 1.2em;
}
What I want is : left: 350px;
I did the change in stylesheet.css . But it doesn't work. Further I deleted the stylesheet.css file , still nothing changed. It seems the stylesheet.css has no relation with the file tpl_header.php.
Thanks,
cclcc
Zen Cart version: 1.3.8a
have you activated the template? when I check the link to your site I'm viewing the "classic" template not "cold steel"
#navmainwrapper does not control where the menu appears. You need to adjust the #navmain
Re: Cold Steel Template Support Thread
Thanks Clyde,
Not sure how to go about it though. Do I need to edit any other files? For example if I want to creat an About Us page.
This is what I have done so far:
in includes/templates/mytemplate/common/tpl_header.php I have added this in
<li<?php echo (($current_page_base == 'about_us') ? ' class="current">' : ' >');?><a href="<?php echo zen_href_link( FILENAME_ABOUT_US, '', 'NONSSL'); ?>"><?php echo '<span>' . HEADER_TITLE_ABOUT_US . '</span>'; ?></a></li>
I have also changed the /includes/languages/english/html_includes/define_page_2.php to be
/includes/languages/english/html_includes/define_about_us.php
What else do I need to change as on my site the link says HEADER_TITLE_ABOUT_US and when pressed page is not found
THanks
Re: Cold Steel Template Support Thread
Oh and should I also have created another file to put this into
/includes/languages/english/html_includes/define_about_us.php
such as
/includes/languages/english/html_includes/mytemplate/define_about_us.php
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
thevagr1
Thanks Clyde,
Not sure how to go about it though. Do I need to edit any other files? For example if I want to creat an About Us page.
This is what I have done so far:
in includes/templates/mytemplate/common/tpl_header.php I have added this in
<li<?php echo (($current_page_base == 'about_us') ? ' class="current">' : ' >');?><a href="<?php echo zen_href_link( FILENAME_ABOUT_US, '', 'NONSSL'); ?>"><?php echo '<span>' . HEADER_TITLE_ABOUT_US . '</span>'; ?></a></li>
I have also changed the /includes/languages/english/html_includes/define_page_2.php to be
/includes/languages/english/html_includes/define_about_us.php
What else do I need to change as on my site the link says HEADER_TITLE_ABOUT_US and when pressed page is not found
THanks
Quote:
Originally Posted by
thevagr1
Oh and should I also have created another file to put this into
/includes/languages/english/html_includes/define_about_us.php
such as
/includes/languages/english/html_includes/mytemplate/define_about_us.php
If you want to use this code:
PHP Code:
<li<?php echo (($current_page_base == 'about_us') ? ' class="current">' : ' >');?><a href="<?php echo zen_href_link( FILENAME_ABOUT_US, '', 'NONSSL'); ?>"><?php echo '<span>' . HEADER_TITLE_ABOUT_US . '</span>'; ?></a></li>
Then you should download and install the "about us" contribution available in the downloads section.
Re: Cold Steel Template Support Thread
Hey Clyde, thanks for the last piece of advice that is all working now.
I have just downloaded and uploaded the Contact Us Add Subject form.
I have deleted any info I did in Define Pages but I am not coming up with the add subject fields from this application. Is there anything i should be changing in the admin controls or deleting from my regular files to get this to work??
Cheers
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
thevagr1
Hey Clyde, thanks for the last piece of advice that is all working now.
I have just downloaded and uploaded the Contact Us Add Subject form.
I have deleted any info I did in Define Pages but I am not coming up with the add subject fields from this application. Is there anything i should be changing in the admin controls or deleting from my regular files to get this to work??
Cheers
You should probably check the support thread for this mod.
Re: Cold Steel Template Support Thread
Hello. You template is wonderful. Thanks! I want to put some Cyrillic words but when i save login.php in UTF-8 the page display hieroglyphs. i have Bulgarian language pack, but it not work with your Template.
Thank you in advance :)
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
vagabont
Hello. You template is wonderful. Thanks! I want to put some Cyrillic words but when i save login.php in UTF-8 the page display hieroglyphs. i have Bulgarian language pack, but it not work with your Template.
Thank you in advance :)
You need to save the file as UTF-8 without BOM
You may also need to make sure your database is set up for UTF-8
Re: Cold Steel Template Support Thread
Hi Clyde, I am running into a problem with additional images. I have Image Handler installed along with Zen Lightbox and the second image overlaps the Add To Cart button.
Any thoughts?