New Zenner
- Join Date:
- Mar 2011
- Posts:
- 2
- Plugin Contributions:
- 0
Andover Modern Template Support Thread
Oopps sorry,
my mistake, there is missing step . . .
thanks for your answer, its very usefull
:clap::clap:
Views: 145,468
New Zenner
Oopps sorry,
my mistake, there is missing step . . .
thanks for your answer, its very usefull
:clap::clap:
New Zenner
Hi,
Please, help me to find where in CSS pages to change the color of the product detailed description body text?
At the moment it is light grey and is very difficult to read on some monitors...
Thanks
Totally Zenned
Hi,
Please, help me to find where in CSS pages to change the color of the product detailed description body text?
At the moment it is light grey and is very difficult to read on some monitors...
Thanks
If you post a link to your site I will take a look.
Thanks,
Anne
New Zenner
Hi, I'm new to zencart, I downloaded your template and it looks good. Everything looks fine in Firefox, but the styles, fonts and layout is so off in IE8.
Have you experience this problem before? Do you have a style sheet that work for IE?
Totally Zenned
Hi, I'm new to zencart, I downloaded your template and it looks good. Everything looks fine in Firefox, but the styles, fonts and layout is so off in IE8.
Have you experience this problem before? Do you have a style sheet that work for IE?
The template has been cross browser tested for ie8, ie7, ie6, safari, chrome, and firefox. All ils perfect if you use the template using all of the default settings. If you have made changes to the template then you will have to cross browser test again. Post a link to your site and I will take a look.
Thanks,
Anne
New Zenner
I reinstalled the template and it worked in IE8 now. Thanks for your great template.
Totally Zenned
I reinstalled the template and it worked in IE8 now. Thanks for your great template.
Yes, the template has been cross browser tested and is compatible in ie7, ie8, ie9, firefox, opera, chrome, safari.
Thanks,
Anne
New Zenner
picaflor-azul:
If you post a link to your site I will take a look.
Thanks,
Anne
I do have the same problem, my website is https://www.caltechcomputer.com
thanks
Totally Zenned
I do have the same problem, my website is https://www.caltechcomputer.com
thanks
If you detail the problem, I would be happy to try and help you out.
Thanks,
Anne
New Zenner
Anyone know how I can get the links for the scrolling flash images to pen in a new browser window. I have tried various ways to implement the "target=_blank" but apparently not getting it in the right place or method for the php.
Totally Zenned
Anyone know how I can get the links for the scrolling flash images to pen in a new browser window. I have tried various ways to implement the "target=_blank" but apparently not getting it in the right place or method for the php.
In your define_main_page.php replace this:
<div id="slider">
<ul>
<li><a href="<?php echo URL1 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE1 ?>" alt="first slide image" /></a></li>
<li><a href="<?php echo URL2 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE2 ?>" alt="second slide image" /></a></li>
<li><a href="<?php echo URL3 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE3 ?>" alt="third slide image" /></a></li>
<li><a href="<?php echo URL4 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE4 ?>" alt="fourth slide image" /></a></li>
<li><a href="<?php echo URL5 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE5 ?>" alt="fifth slide image" /></a></li>
</ul>
</div>
with this:
<div id="slider">
<ul>
<li><a href="<?php echo URL1 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE1 ?>" alt="first slide image" /></a></li>
<li><a href="<?php echo URL2 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE2 ?>" alt="second slide image" /></a></li>
<li><a href="<?php echo URL3 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE3 ?>" alt="third slide image" /></a></li>
<li><a href="<?php echo URL4 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE4 ?>" alt="fourth slide image" /></a></li>
<li><a href="<?php echo URL5 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE5 ?>" alt="fifth slide image" /></a></li>
</ul>
</div>
New Zenner
<div id="slider"> <ul> <li><a href="<?php echo URL1 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE1 ?>" alt="first slide image" /></a></li> <li><a href="<?php echo URL2 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE2 ?>" alt="second slide image" /></a></li> <li><a href="<?php echo URL3 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE3 ?>" alt="third slide image" /></a></li> <li><a href="<?php echo URL4 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE4 ?>" alt="fourth slide image" /></a></li> <li><a href="<?php echo URL5 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE5 ?>" alt="fifth slide image" /></a></li> </ul> </div> ```with this: > > ``` <div id="slider"> <ul> <li><a href="<?php echo URL1 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE1 ?>" alt="first slide image" /></a></li> <li><a href="<?php echo URL2 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE2 ?>" alt="second slide image" /></a></li> <li><a href="<?php echo URL3 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE3 ?>" alt="third slide image" /></a></li> <li><a href="<?php echo URL4 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE4 ?>" alt="fourth slide image" /></a></li> <li><a href="<?php echo URL5 ?>" target="_blank"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE5 ?>" alt="fifth slide image" /></a></li> </ul> </div> ```picaflor-azul:
In your define_main_page.php replace this:
Perfect. Thanks for the answer.
Totally Zenned
No problem!
Thanks,
Anne
New Zenner
I am trying out this template, very nice, like it a lot... but I dont think is reading the meta_tags.php file, I had the site working properly with another template and this file has not changed...
any ideas...
Totally Zenned
I am trying out this template, very nice, like it a lot... but I dont think is reading the meta_tags.php file, I had the site working properly with another template and this file has not changed...
any ideas...
This is not a problem with the template. It sounds like you have not used the overrides properly and did not edit the correct meta tags file:
includes/languages/english/andover_modern/meta_tags.php
Thanks,
Anne
New Zenner
picaflor-azul:
This is not a problem with the template. It sounds like you have not used the overrides properly and did not edit the correct meta tags file:
includes/languages/english/andover_modern/meta_tags.php
Thanks,
Anne
right on! thanks.
Totally Zenned
right on! thanks.
No problem :smile:
Thanks,
Anne
Zen Follower
I'm trying to change the color on the top-nav-bk.jpg image from maroon to a soft grey. I actually accomplished it...mostly...but I'm having problems with 5 things. (http://www.debrasglasscraft.com/shopping-cart if you'd like to take a quick look. I'm trying to get the design work done first, before I add items...so it's really bare right now.)
I lost the rounded edges and have no idea how to get them back. They really make the page elegant. :smile:
I want to change the font colors from white to black, or at least a dark grey that matches the background. Also I want to change the hover color to something other than yellow.
Somewhere in the midst of trying to do this, I lost the footer for the home page. It's there on all the other pages, but it's disappeared on the home page. (BTW, how can I change "Home" to "Index"?)
How can I get rid of the Home::Contact Us, etc., on the secondary pages?
I'd like to center the Copyright 2011...etc. line on the bottom bar that I managed to erase.
Sorry to hit so many things at once...but I figured if I did it this way, I'd get everything answered at once, and wouldn't need to keep pestering you. :wacko:
Thanks in advance for your help!
Zen Follower
Please disregard the second part of question 3...I just figured out how to change Home to Index. :clap:
Now I just need to figure out how to make the rest of the changes............ :unsure:
Totally Zenned
Please disregard the second part of question 3...I just figured out how to change Home to Index.
Now I just need to figure out how to make the rest of the changes............
It looks like your site is not working properly. Check your cache folder for error logs.
Thanks,
Anne
Tell staff why this post should be reviewed.