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
Re: Winchester Responsive
Quote:
Originally Posted by
corbe23
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
Re: Winchester Responsive
Re: Winchester Responsive
Quote:
Originally Posted by
picaflor-azul
From the readme.html file:
Thanks,
Anne
http://i60.tinypic.com/2zrj6tx.png
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
Re: Winchester Responsive
Quote:
Originally Posted by
chattunnel
You need to click on the line after that one that has no title.
Thanks,
Anne
Re: Winchester Responsive
Quote:
Originally Posted by
picaflor-azul
You need to click on the line after that one that has no title.
Thanks,
Anne
Thank you that finally did the trick!
Re: Winchester Responsive
Quote:
Originally Posted by
chattunnel
Thank you that finally did the trick!
I am happy that you figured it out ;)
Thanks,
Anne
Re: Winchester Responsive
Greetings All,
I've made one fix and one upgrade to the Home Page Banner Slider that I wanted to share. :smile:
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! :D
Re: Winchester Responsive
Quote:
Originally Posted by
kwright
Greetings All,
I've made one fix and one upgrade to the Home Page Banner Slider that I wanted to share. :smile:
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! :D
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
Re: Winchester Responsive
Quote:
Originally Posted by
picaflor-azul
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! :clap: