Page 32 of 79 FirstFirst ... 22303132333442 ... LastLast
Results 311 to 320 of 790
  1. #311
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default 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:

    Code:
    <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:

    Code:
    <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>

  2. #312
    Join Date
    May 2007
    Posts
    92
    Plugin Contributions
    0

    Default Re: Andover Modern Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    In your define_main_page.php replace this:

    Code:
    <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:

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

  3. #313
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Andover Modern Template Support Thread

    No problem!

    Thanks,

    Anne

  4. #314
    Join Date
    Jul 2010
    Posts
    3
    Plugin Contributions
    0

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

  5. #315
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    bug 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

  6. #316
    Join Date
    Jul 2010
    Posts
    3
    Plugin Contributions
    0

    Default Re: Andover Modern Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    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.

  7. #317
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Andover Modern Template Support Thread

    right on! thanks.
    No problem

    Thanks,

    Anne

  8. #318
    Join Date
    Dec 2010
    Posts
    257
    Plugin Contributions
    0

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

    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.

    Thanks in advance for your help!

  9. #319
    Join Date
    Dec 2010
    Posts
    257
    Plugin Contributions
    0

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

  10. #320
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default 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

 

 
Page 32 of 79 FirstFirst ... 22303132333442 ... LastLast

Similar Threads

  1. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  2. v151 Andover Modern - Site rebuild Problems
    By Rizla in forum Addon Templates
    Replies: 4
    Last Post: 4 May 2014, 09:49 AM
  3. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  4. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 PM
  5. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR