Page 39 of 96 FirstFirst ... 2937383940414989 ... LastLast
Results 381 to 390 of 953
  1. #381
    Join Date
    May 2015
    Location
    United States
    Posts
    7
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    I got everything working on my website just fine. But now I'm having issues with it on tablet devices. It works fine on mobiles, just not tablets. On the tablet vertically the header menu completely disappears. Horizontally, it looks like it should be there b/c the drop down arrows are visible but the words aren't. The menu titles do not exist, but in the drop down menu the font is just white so it can't be seen. It should be black.

    Thanks in advance for any help.
    Corinne

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

    Default Re: Winchester Responsive

    Quote Originally Posted by corbe23 View Post
    I got everything working on my website just fine. But now I'm having issues with it on tablet devices. It works fine on mobiles, just not tablets. On the tablet vertically the header menu completely disappears. Horizontally, it looks like it should be there b/c the drop down arrows are visible but the words aren't. The menu titles do not exist, but in the drop down menu the font is just white so it can't be seen. It should be black.

    Thanks in advance for any help.
    Corinne
    If you post a link to your site I can take a look.

    Thanks,

    Anne

  3. #383
    Join Date
    May 2015
    Location
    United States
    Posts
    7
    Plugin Contributions
    0

    Default Re: Winchester Responsive


  4. #384
    Join Date
    Aug 2012
    Posts
    45
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Quote Originally Posted by picaflor-azul View Post
    From the readme.html file:



    Thanks,

    Anne

    this is a screen shot after I followed your directions, there is no current social links where you said for me to go and edit

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

    Default Re: Winchester Responsive

    Quote Originally Posted by chattunnel View Post

    this is a screen shot after I followed your directions, there is no current social links where you said for me to go and edit
    You need to click on the line after that one that has no title.

    Thanks,

    Anne

  6. #386
    Join Date
    Aug 2012
    Posts
    45
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Quote Originally Posted by picaflor-azul View Post
    You need to click on the line after that one that has no title.

    Thanks,

    Anne
    Thank you that finally did the trick!

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

    Default Re: Winchester Responsive

    Quote Originally Posted by chattunnel View Post
    Thank you that finally did the trick!
    I am happy that you figured it out ;)

    Thanks,

    Anne

  8. #388
    Join Date
    Nov 2004
    Posts
    364
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Greetings All,

    I've made one fix and one upgrade to the Home Page Banner Slider that I wanted to share.

    The Fix - Banners not displayed in the order set in the banner manager:
    Look in: includes\templates\winchester_responsive\common\tpl_home_slider.php

    Find
    Code:
    $banner = $db->Execute("SELECT banners_id, banners_title, banners_image, banners_html_text, banners_open_new_windows, banners_url FROM " . TABLE_BANNERS . " WHERE status = 1 AND banners_group = 'homepageslide'");
    Add order by banners_sort_order to end of query
    Code:
    $banner = $db->Execute("SELECT banners_id, banners_title, banners_image, banners_html_text, banners_open_new_windows, banners_url FROM " . TABLE_BANNERS . " WHERE status = 1 AND banners_group = 'homepageslide' order by banners_sort_order");
    The Upgrade - Added the ability to NOT show Banner Title on the Banner image selectively by Banner:
    Look in: includes\templates\winchester_responsive\common\tpl_home_slider.php

    Find - There are 3 instances
    Code:
    <span class="banner"><span>' . $banner->fields['banners_title'] . '</span></span>
    Replace With
    Code:
    <span class="banner">'.( strtolower($banner->fields['banners_title']) != 'none' ? '<span>' . $banner->fields['banners_title'] . '</span>' : '' ).'</span>
    To disable the display of the Banner Title, just enter the work none or NONE for the title. It's not case sensitive!

    Hope this helps!
    Experience is what you get when you don’t get what you want…

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

    Default Re: Winchester Responsive

    Quote Originally Posted by kwright View Post
    Greetings All,

    I've made one fix and one upgrade to the Home Page Banner Slider that I wanted to share.

    The Fix - Banners not displayed in the order set in the banner manager:
    Look in: includes\templates\winchester_responsive\common\tpl_home_slider.php

    Find
    Code:
    $banner = $db->Execute("SELECT banners_id, banners_title, banners_image, banners_html_text, banners_open_new_windows, banners_url FROM " . TABLE_BANNERS . " WHERE status = 1 AND banners_group = 'homepageslide'");
    Add order by banners_sort_order to end of query
    Code:
    $banner = $db->Execute("SELECT banners_id, banners_title, banners_image, banners_html_text, banners_open_new_windows, banners_url FROM " . TABLE_BANNERS . " WHERE status = 1 AND banners_group = 'homepageslide' order by banners_sort_order");
    The Upgrade - Added the ability to NOT show Banner Title on the Banner image selectively by Banner:
    Look in: includes\templates\winchester_responsive\common\tpl_home_slider.php

    Find - There are 3 instances
    Code:
    <span class="banner"><span>' . $banner->fields['banners_title'] . '</span></span>
    Replace With
    Code:
    <span class="banner">'.( strtolower($banner->fields['banners_title']) != 'none' ? '<span>' . $banner->fields['banners_title'] . '</span>' : '' ).'</span>
    To disable the display of the Banner Title, just enter the work none or NONE for the title. It's not case sensitive!

    Hope this helps!
    Thank you for posting. The fix for the banner sort order is included in the newest package update.

    Thank you for posting your code.

    Thanks,

    Anne

  10. #390
    Join Date
    Nov 2004
    Posts
    364
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Quote Originally Posted by picaflor-azul View Post
    Thank you for posting. The fix for the banner sort order is included in the newest package update.

    Thank you for posting your code.

    Thanks,

    Anne
    You're welcome Anne. I'm using v1.3, so it doesn't have the fix. Just downloaded 1.4 to see what else has been updated!

    Thanks again for sharing and supporting such a great responsive template!
    Experience is what you get when you don’t get what you want…

 

 
Page 39 of 96 FirstFirst ... 2937383940414989 ... LastLast

Similar Threads

  1. v154 Winchester Black Responsive Template
    By picaflor-azul in forum Addon Templates
    Replies: 497
    Last Post: 24 Apr 2023, 09:29 PM
  2. v155 Winchester Black responsive - looking for Social media icon flexible footer fix
    By MattA66 in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 8 Jun 2021, 05:34 PM
  3. v155 Responsive Classic vs Responsive Sheffield Blue vs ?
    By Zean in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 13 May 2016, 07:01 AM
  4. v154 Where do I find the images for sliders, using Winchester Responsive Black
    By zbdude in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Apr 2016, 12:00 AM
  5. v153 Winchester Responsive - Trouble resizing carousel size?
    By hols.club in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 26 Nov 2014, 05:09 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