Page 15 of 21 FirstFirst ... 51314151617 ... LastLast
Results 141 to 150 of 208
  1. #141
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by soapycauldron View Post
    Yet another awesome site from Piacaflor-Azul! Big big fan, I've used a couple of your templates over the years and they are always gorgeous. I had a few issues uploading but as usual it's a PICNIC error as it's been quite a few years since I've made any changes to my site. Had to upgrade from 1.3.8 to 1.5.4 (norty, slapped wrists all around). Anyway- thank you. Just a few more aesthetic tweaks and links to sort and we're ready to go live x

    Demo site
    That's great! Thank you so much for posting. You have made me smile ;)

    Thanks,

    Anne

  2. #142
    Join Date
    Jan 2006
    Posts
    42
    Plugin Contributions
    0

    Default Re: Responsive Avonlee Contempo

    First off,
    Thank You Anne for such a great template that is easy to modify for my store. I have one question when viewing on my iPhone the shopping cart and home button located at the top bar is moved down below the bar. Where would I look to find the file to move them up?


    Thank You again,
    Randy

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

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by rtfulk View Post
    First off,
    Thank You Anne for such a great template that is easy to modify for my store. I have one question when viewing on my iPhone the shopping cart and home button located at the top bar is moved down below the bar. Where would I look to find the file to move them up?


    Thank You again,
    Randy
    This template has not been updated to use php mobile detect and is relying solely on media queries. You will have to edit the responsive.css file.

    Thanks,

    Anne

  4. #144
    Join Date
    Jan 2006
    Posts
    42
    Plugin Contributions
    0

    Default Re: Responsive Avonlee Contempo

    Thank you for the direction. I have corrected the problem. If anyone else has this problem this is what I done.
    In responsive.css

    line 106 & 107 I changed to this
    .m-cart{position:relative;margin-left:100px;}
    .m-home{position:relative;margin-left:100px;}

    Line 160 & 161 I changed to this.
    .m-cart{position:relative;margin-left:100px;}
    .m-home{position:relative;margin-left:100p;}

    Randy

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

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by rtfulk View Post
    Thank you for the direction. I have corrected the problem. If anyone else has this problem this is what I done.
    In responsive.css

    line 106 & 107 I changed to this
    .m-cart{position:relative;margin-left:100px;}
    .m-home{position:relative;margin-left:100px;}

    Line 160 & 161 I changed to this.
    .m-cart{position:relative;margin-left:100px;}
    .m-home{position:relative;margin-left:100p;}

    Randy
    Thanks for posting your solution ;)

    Thanks,

    Anne

  6. #146
    Join Date
    May 2013
    Posts
    8
    Plugin Contributions
    0

    Default Re: Responsive Avonlee Contempo

    Hi Anne,

    Thanks for the template! It's a great help!
    I was wondering if it is possible to have a different logo image for the mobile devices?


    Olga

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

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by Olga View Post
    Hi Anne,

    Thanks for the template! It's a great help!
    I was wondering if it is possible to have a different logo image for the mobile devices?


    Olga
    This template is built using an older version of the diy responsive template default package and does not use php mobile detect so you can not use device specific php files or javascript. If you want to do this you will need to do it using media queries only or add a javascript to swap out the image in the main header file.

    Thanks,

    Anne

  8. #148
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Responsive Avonlee Contempo

    Anne,

    More often than not clients are editing the define_main_page.php in admin using the built-in editor and ofc the php code which calls the slideshow is deprecated or butchered otherwise.

    So I am testing an alternative. I completely removed the php code from the define_main_page.php and then edited

    /includes/templates/responsive_avonlee_contempo/templates/tpl_index_default.php

    Just before

    PHP Code:
    <?php if (DEFINE_MAIN_PAGE_STATUS >= and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
    I added the slider code

    PHP Code:
    <!-- bof slider code --> 
    <?php 
    if ($this_is_home_page) { 
    ?> 
     <?php 
        
    if (RAV_SLIDES_STATUS == 'true') { 
    ?> 
          <?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE$current_page_base,'common'
                . 
    '/tpl_home_slider.php');?> 
    <?php 
        
    ?> 
    <?php 
        
    ?> 
    <!-- eof slider code -->
    Seems to work ok on my local dev site.

    Do you see a problem with this? If not then this may solve the editing problems of the define_main_page.php using a common editor.

    Cheers / Frank

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

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by frank18 View Post
    Anne,

    More often than not clients are editing the define_main_page.php in admin using the built-in editor and ofc the php code which calls the slideshow is deprecated or butchered otherwise.

    So I am testing an alternative. I completely removed the php code from the define_main_page.php and then edited

    /includes/templates/responsive_avonlee_contempo/templates/tpl_index_default.php

    Just before

    PHP Code:
    <?php if (DEFINE_MAIN_PAGE_STATUS >= and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
    I added the slider code

    PHP Code:
    <!-- bof slider code --> 
    <?php 
    if ($this_is_home_page) { 
    ?> 
     <?php 
        
    if (RAV_SLIDES_STATUS == 'true') { 
    ?> 
          <?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE$current_page_base,'common'
                . 
    '/tpl_home_slider.php');?> 
    <?php 
        
    ?> 
    <?php 
        
    ?> 
    <!-- eof slider code -->
    Seems to work ok on my local dev site.

    Do you see a problem with this? If not then this may solve the editing problems of the define_main_page.php using a common editor.

    Cheers / Frank
    Yes, this can be done. I always like to discourage clients from using an html editor because of the "bad" code that it generates ;)

    Thanks,

    Anne

  10. #150
    Join Date
    Apr 2013
    Location
    Wisconsin
    Posts
    134
    Plugin Contributions
    0

    help question Re: Responsive Avonlee Contempo

    Anne,

    I was using Alysa Rounded on my website, which I loved, but I do not see it in the responsive format, so I decided to install Responsive Avonlee Contempo since they look similar enough, even though I really wanted Alysa Rounded as responsive. (Did you make that one?) Anyway, I noticed there are four SQL patches, and I was going to install them, but then I saw that the directions stated, "DO NOT INSTALL THE PATCH IF YOU HAVE PREVIOUSLY INSTALLED ONE OF OUR TEMPLATES OR HAVE RUN IT BEFORE." I do not believe Alysa Rounded used any of those SQL patches, but since I believe you created Alysa Rounded, I have used one of your templates before. Do I still install all four of those patches listed for Responsive Avonlee Contempo? Please let me know, because I do not want to install something I should not and then have a big mess. At the same time, when I do not install any of those, the template does not look correct, and the option in Configuration, Layout Settings for the Responsive Style is not there, so I am sure I must need to do at least a few of those SQL patches. My only hang-up is that the directions say not to install the patches if I have previously used one of your templates. Please let me know! Thanks! :-)

 

 
Page 15 of 21 FirstFirst ... 51314151617 ... LastLast

Similar Threads

  1. Avonlee Contempo Template Support Thread
    By picaflor-azul in forum Addon Templates
    Replies: 542
    Last Post: 1 Feb 2018, 05:55 PM
  2. Avonlee Contempo - Center column width
    By Forum5 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 7 Feb 2014, 03:54 AM
  3. v152 Slide Show - Avonlee Contempo
    By Forum5 in forum Addon Templates
    Replies: 2
    Last Post: 3 Feb 2014, 06:11 PM
  4. V1.51 Responsive Avonlee left column margin
    By satello in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 22 Jan 2014, 04:51 PM
  5. Avonlee Contempo template
    By nothingnuaghty in forum Addon Templates
    Replies: 2
    Last Post: 15 Dec 2010, 08:05 AM

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