Page 31 of 50 FirstFirst ... 21293031323341 ... LastLast
Results 301 to 310 of 496
  1. #301
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,239
    Plugin Contributions
    1

    Default Re: Dover Fine Responsive Template

    Paul,

    I would start looking at your \includes\templates\your_template\common\html_header.php file, the page source for your homepage has </head> and <body id="indexHomeBody"> errors which may be linked to the changes you've made to this file. Try replacing with the templates original file and test.

  2. #302
    Join Date
    Dec 2008
    Posts
    23
    Plugin Contributions
    0

    Default Re: Dover Fine Responsive Template

    I have installed the template in Zen Cart 1.54. Is that perhaps the problem?

    Thanks,
    Paul

  3. #303
    Join Date
    Dec 2008
    Posts
    23
    Plugin Contributions
    0

    Default Re: Dover Fine Responsive Template

    I have installed everything again, but this time using zen 1.5.3. instead of 1.5.4.

    It looks like this solves my problems. Thanks again for this great template.

    Paul

  4. #304
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by Goldlion View Post
    I have installed everything again, but this time using zen 1.5.3. instead of 1.5.4.

    It looks like this solves my problems. Thanks again for this great template.

    Paul
    There is no compatibility issue with this template and 1.5.4. I have installed it many times with no problems on 1.5.4. Your issue was being caused by something else.

    Thanks,

    Anne

  5. #305
    Join Date
    Dec 2008
    Posts
    23
    Plugin Contributions
    0

    Default Re: Dover Fine Responsive Template

    ok, i'm sorry I jumped to conclusions.

    I made a mistake editing tpl_main_page when I installed cookie control.

    Paul

  6. #306
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by Goldlion View Post
    ok, i'm sorry I jumped to conclusions.

    I made a mistake editing tpl_main_page when I installed cookie control.

    Paul
    I am happy that you figured it out ;)

    Thanks,

    Anne

  7. #307
    Join Date
    Mar 2009
    Location
    Essex, UK
    Posts
    446
    Plugin Contributions
    0

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by picaflor-azul View Post
    You need to turn off the banners from the winchester responsive templates. If you want them to show on the dover fine template you will need to adjust the z-index. The same is true of the home page text or any other page element that you want to add to the main page. Anything can be turned on, added, etc, but due the z-index on the background slide show, you will need to adjust the z-indexes of the elements so that they will show on top of the slide show.

    You could also add the content in a div below the slide show. There are many possibilites---no reason to choose between content and the slide show.

    As always, the free template packages are offered as a starting point. If you do not want to use them "out of the box", then you can modify them as you need to.

    Thanks,

    Anne
    Hi Anne

    I know this got posted some time ago, but I need to add some content to the home page (just a video of the product) and I am really struggling.

    HTML code as follows (div in red)

    Code:
    <?php
        if ($this_is_home_page) {
    ?>
    <script type="text/javascript" src="includes/templates/dover_fine/jscript/jquery.easing.min.js"></script>
    		<script type="text/javascript" src="includes/templates/dover_fine/jscript/supersized.3.2.7.min.js"></script>
    		<script type="text/javascript" src="includes/templates/dover_fine/jscript/supersized.shutter.min.js"></script>
    		
    		<script type="text/javascript">
    			jQuery(function($){
    			$.supersized({
    	
    					// Functionality
    					slide_interval          :   3000,		// Length between transitions
    					transition              :   1, 		// 0-None, 1-Fade, 2-Slide Top, 3-Slide Right, 4-Slide Bottom, 5-Slide Left, 6-Carousel Right, 7-Carousel Left
    					transition_speed		:	700,		// Speed of transition
    					vertical_center: 0,
    			      autoplay:1,
    					// Components							
    					slide_links: 'blank',	// Individual links for each slide (Options: false, 'num', 'name', 'blank')
    					slides 	:  	[// Slideshow Images
    										
    <?php
                    $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'");
                    
                    if ($banner->RecordCount() > 0) {
    
     while (!$banner->EOF) {
    
    echo "{image : '" . HTTP_SERVER . DIR_WS_CATALOG . 'images/' . $banner->fields['banners_image'] . "', title : '" . '<p>' . $banner->fields['banners_title'] . '</p>' . "', url : '" . zen_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner->fields['banners_id']) . "'},";
    
    zen_update_banner_display_count($banner->fields['banners_id']);
                                    $banner->MoveNext();
    
    }
    ?>
    							]
    					
    				});
    		    });
    		    
    		</script>
    
    	<!--Arrow Navigation-->
    <div id="slide-nav">
    	<a id="prevslide" class="load-item"></a>
    	<a id="nextslide" class="load-item"></a>
    </div>	
    	<div id="thumb-tray" class="load-item">
    		<div id="thumb-back"></div>
    		<div id="thumb-forward"></div>
    	</div>
    
    
    <div id="slidecaption"></div>
    <div id="vid">
    <iframe width="560" height="315" src="https://www.youtube.com/embed/FzPEtnrNUuU" frameborder="0" allowfullscreen></iframe>
    </div>
     <?php
    }
    ?>
    
    <?php
        } ?>
    CSS code (for now) is:

    Code:
    #vid { border: 1px #f00 solid; display: block; z-index: 100; }
    Please, any help is gratefully received.
    Debbie Harrison
    DVH Design | Web Design blog

  8. #308
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by dharrison View Post
    Hi Anne

    I know this got posted some time ago, but I need to add some content to the home page (just a video of the product) and I am really struggling.

    HTML code as follows (div in red)

    Code:
    <?php
        if ($this_is_home_page) {
    ?>
    <script type="text/javascript" src="includes/templates/dover_fine/jscript/jquery.easing.min.js"></script>
    		<script type="text/javascript" src="includes/templates/dover_fine/jscript/supersized.3.2.7.min.js"></script>
    		<script type="text/javascript" src="includes/templates/dover_fine/jscript/supersized.shutter.min.js"></script>
    		
    		<script type="text/javascript">
    			jQuery(function($){
    			$.supersized({
    	
    					// Functionality
    					slide_interval          :   3000,		// Length between transitions
    					transition              :   1, 		// 0-None, 1-Fade, 2-Slide Top, 3-Slide Right, 4-Slide Bottom, 5-Slide Left, 6-Carousel Right, 7-Carousel Left
    					transition_speed		:	700,		// Speed of transition
    					vertical_center: 0,
    			      autoplay:1,
    					// Components							
    					slide_links: 'blank',	// Individual links for each slide (Options: false, 'num', 'name', 'blank')
    					slides 	:  	[// Slideshow Images
    										
    <?php
                    $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'");
                    
                    if ($banner->RecordCount() > 0) {
    
     while (!$banner->EOF) {
    
    echo "{image : '" . HTTP_SERVER . DIR_WS_CATALOG . 'images/' . $banner->fields['banners_image'] . "', title : '" . '<p>' . $banner->fields['banners_title'] . '</p>' . "', url : '" . zen_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner->fields['banners_id']) . "'},";
    
    zen_update_banner_display_count($banner->fields['banners_id']);
                                    $banner->MoveNext();
    
    }
    ?>
    							]
    					
    				});
    		    });
    		    
    		</script>
    
    	<!--Arrow Navigation-->
    <div id="slide-nav">
    	<a id="prevslide" class="load-item"></a>
    	<a id="nextslide" class="load-item"></a>
    </div>	
    	<div id="thumb-tray" class="load-item">
    		<div id="thumb-back"></div>
    		<div id="thumb-forward"></div>
    	</div>
    
    
    <div id="slidecaption"></div>
    <div id="vid">
    <iframe width="560" height="315" src="https://www.youtube.com/embed/FzPEtnrNUuU" frameborder="0" allowfullscreen></iframe>
    </div>
     <?php
    }
    ?>
    
    <?php
        } ?>
    CSS code (for now) is:

    Code:
    #vid { border: 1px #f00 solid; display: block; z-index: 100; }
    Please, any help is gratefully received.
    If you post a link to the site I can take a look.

    Thanks,

    Anne

  9. #309
    Join Date
    Mar 2009
    Location
    Essex, UK
    Posts
    446
    Plugin Contributions
    0

    Default Re: Dover Fine Responsive Template

    Hi Anne

    I am currently developing the new changes on my local server, but the actual website will be at http://sitstandforbusiness.com/index.php
    Debbie Harrison
    DVH Design | Web Design blog

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

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by dharrison View Post
    Hi Anne

    I am currently developing the new changes on my local server, but the actual website will be at http://sitstandforbusiness.com/index.php
    I would just add it to the define_main_page.php. Then you can add a higher z-index to the element to show it over the background slide show.

    Thanks,

    Anne

 

 
Page 31 of 50 FirstFirst ... 21293031323341 ... LastLast

Similar Threads

  1. v154 dover fine - removing links
    By simon3215 in forum Addon Templates
    Replies: 8
    Last Post: 3 Oct 2018, 03:42 AM
  2. v154 Best Responsive Template
    By martynbaker52 in forum General Questions
    Replies: 4
    Last Post: 12 Sep 2015, 02:35 AM
  3. v154 Dover Fine configuration
    By tuborg in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Feb 2015, 02:27 PM
  4. v154 Using Dover Fine & Image Handler 4
    By wlamoreaux in forum General Questions
    Replies: 1
    Last Post: 28 Jan 2015, 11:17 PM
  5. v151 responsive template problems
    By irishshopper in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 23 May 2014, 07:11 AM

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