Zen Cart Logo
Forums / Addon Templates / Andover Modern Template Support Thread

Andover Modern Template Support Thread

Views: 145,468

Results 301 to 320 of 790
29 Mar 2011, 2:14 AM
#301
indiasongs avatar

indiasongs

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:

11 Apr 2011, 5:25 PM
#302
svetlinm avatar

svetlinm

New Zenner

Join Date:
Apr 2011
Posts:
3
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

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

11 Apr 2011, 8:56 PM
#303
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Andover Modern Template Support Thread

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

13 Apr 2011, 11:27 PM
#304
tieuwaiwai avatar

tieuwaiwai

New Zenner

Join Date:
Apr 2011
Posts:
2
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

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?

13 Apr 2011, 11:50 PM
#305
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Andover Modern Template Support Thread

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

21 Apr 2011, 6:18 AM
#306
tieuwaiwai avatar

tieuwaiwai

New Zenner

Join Date:
Apr 2011
Posts:
2
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

I reinstalled the template and it worked in IE8 now. Thanks for your great template.

21 Apr 2011, 1:02 PM
#307
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Andover Modern Template Support Thread

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

5 May 2011, 7:12 PM
#308
mn37rt89 avatar

mn37rt89

New Zenner

Join Date:
May 2011
Posts:
1
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

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

5 May 2011, 7:55 PM
#309
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Andover Modern Template Support Thread

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

5 May 2011, 9:10 PM
#310
thomaswhiteeagle avatar

thomaswhiteeagle

New Zenner

Join Date:
May 2007
Posts:
93
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

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.

5 May 2011, 9:25 PM
#311
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Andover Modern Template Support Thread

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>
6 May 2011, 12:24 AM
#312
thomaswhiteeagle avatar

thomaswhiteeagle

New Zenner

Join Date:
May 2007
Posts:
93
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

picaflor-azul:

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> ```

Perfect. Thanks for the answer.

6 May 2011, 12:34 AM
#313
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Andover Modern Template Support Thread

No problem!

Thanks,

Anne

9 May 2011, 9:34 PM
#314
kolivo avatar

kolivo

New Zenner

Join Date:
Jul 2010
Posts:
3
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

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...

10 May 2011, 11:09 AM
#315
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Andover Modern Template Support Thread

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

10 May 2011, 3:38 PM
#316
kolivo avatar

kolivo

New Zenner

Join Date:
Jul 2010
Posts:
3
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

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.

11 May 2011, 12:23 PM
#317
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Andover Modern Template Support Thread

right on! thanks.

No problem :smile:

Thanks,

Anne

3 Jun 2011, 1:49 AM
#318
scully avatar

scully

Zen Follower

Join Date:
Dec 2010
Posts:
257
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

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.)

  1. I lost the rounded edges and have no idea how to get them back. They really make the page elegant. :smile:

  2. 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.

  3. 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"?)

  4. How can I get rid of the Home::Contact Us, etc., on the secondary pages?

  5. 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!

3 Jun 2011, 1:57 AM
#319
scully avatar

scully

Zen Follower

Join Date:
Dec 2010
Posts:
257
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

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:

3 Jun 2011, 3:24 PM
#320
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Andover Modern Template Support Thread

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