Re: Winchester Responsive
Quote:
Originally Posted by
picandnix
I'm sure I read it late last night but maybe my mind was playing tricks...
How does one disable the left slide out please? I tried by adding
PHP Code:
.slide-out-div display:none;}
to the stylesheet.css but to no avail.
How about this :smile:
Code:
.slide-out-div {display:none;}
Re: Winchester Responsive
Quote:
Originally Posted by
RixStix
How about this :smile:
Code:
.slide-out-div {display:none;}
PMSL, did I mention that I had a late night last night? :blush:
thanks mate :cheers:
Re: Winchester Responsive
Quote:
Originally Posted by
picandnix
PMSL, did I mention that I had a late night last night? :blush:
thanks mate :cheers:
Lol ;) You can also remove the slide out code from the bottom of the tpl_main_page.php file if you want to remove it permanently.
Thanks,
Anne
Re: Winchester Responsive
I just submitted an update that is pending approval which fixes a bug in the auto installer so now the template package is fully compatible with version 1.5.3 :smile:
Thanks,
Anne
Re: Winchester Responsive
So then that will fix my issue?
Re: Winchester Responsive
Hi Anne.
A couple of questions if I may please?
Firstly, a site that I have just started work on daisy dubois dot co dot uk on the product info page, my product image is not aligned centre to the grey background box, on your demo it (naturally) is. So I've done something wrong, a bad merge perhaps? I've compared my stylesheet to the packaged stylesheet, no variances.
Secondly, my client plans on creating a few youtube videos and would like to be able to embed and display them (per product) on the product info page in the Custom Tab. Is that possible please? I can of course add one video by adding the embed code via the banner manager, but of course it then displays the same video on all products.
Thank you very much in advance
Re: Winchester Responsive
Quote:
Originally Posted by
KNERD
So then that will fix my issue?
What issue?
Thanks,
Anne
Re: Winchester Responsive
Quote:
Originally Posted by
picandnix
Hi Anne.
A couple of questions if I may please?
Firstly, a site that I have just started work on daisy dubois dot co dot uk on the product info page, my product image is not aligned centre to the grey background box, on your demo it (naturally) is. So I've done something wrong, a bad merge perhaps? I've compared my stylesheet to the packaged stylesheet, no variances.
Secondly, my client plans on creating a few youtube videos and would like to be able to embed and display them (per product) on the product info page in the Custom Tab. Is that possible please? I can of course add one video by adding the embed code via the banner manager, but of course it then displays the same video on all products.
Thank you very much in advance
For the youtube videos, you will either add a custom field to the product info page, or you can install one of the youtube plugins and then add that code to another tab in the includes/templates/winchester_responsive/templates/tpl_product_info_display.php file. Now, looking at the file. You will add the name of your tab to the list:
Code:
<ul class="resp-tabs-list">
<li><?php echo HEADER_TITLE_DESCRIPTION; ?></li>
<li><?php echo HEADER_TITLE_DETAILS; ?></li>
<li><?php echo HEADER_TITLE_REVIEWS; ?></li>
<li>
<?php
//You will have to change 'SHOW_BANNERS_GROUP_SET9' for each different group you added to display the proper banners
if (SHOW_BANNERS_GROUP_SETCUSTOMTAB != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SETCUSTOMTAB))
{
if ($banner->RecordCount() > 0)
{
echo $banner->fields['banners_title'];
}
}?>
</li>
</ul>
and then your tab code between <div> and </div>
The easiest way to center the product image would be to remove the "back" class on the #productMainImage div ;)
Thanks,
Anne
Re: Winchester Responsive
Quote:
Originally Posted by
picaflor-azul
What issue?
Thanks,
Anne
The issue I posted about in the page previous to this one
Re: Winchester Responsive
Quote:
Originally Posted by
KNERD
The issue I posted about in the page previous to this one
If you post your question again I can take a look.
Thanks,
Anne