Lazy load images in a modal with a slider - javascript

I have a website that I am trying to optimize and one of the things that keeps coming back is I need to lazy load my larger images that I have inside a modal, the modal works as it's supposed to and opens and closes and the slider works as intended, however when I add this code to lazy load the modal the pictures do not load when the modal is opened. When I remove it everything works again. Can anyone see a reason as to why this happens? I have read some stuff about in the <img src="" you are supposed to put a low res image and in the tag you are to add the data-src="" for the main picture. When I do this all that happens is the low res image loads, and the larger ones never load.
The page is live here: https://www.smart-1.us/media.php
<script>
function lazyLoad(){
var $images = $('.lazy_load');
$images.each(function(){
var $img = $(this),
src = $img.attr('data-src');
$img
.on('load',imgLoaded($img[0]))
.attr('src',src);
});
};
$('.modal').on("show.bs.modal", function () {
lazyLoad();
};
</script>
<div id="Lightbox" class="modal">
<span class="close pointer" onclick="closeLightbox()">×</span>
<div class="modal-content">
<div class="slide">
<img src="media/pictures/Calm cold day.webp" class="image-slide lazy_load" alt="N21AP Cold Day" title="N21AP Cold Day" />
</div>
<div class="slide">
<img src="media/pictures/N21AP cold day.webp" class="image-slide lazy_load" alt="N21AP In Snow" title="N21AP In Snow" />
</div>
<div class="slide">
<img src="media/pictures/Getting mission ready.webp" class="image-slide lazy_load" alt="Entering Mission Data" title="Entering Mission Data" />
</div>
<div class="slide">
<img src="media/pictures/Final walkaround.webp" class="image-slide lazy_load" alt="Pre-Takeoff Checks" title="Pre-Takeoff Checks" />
</div>
<div class="slide">
<img src="media/pictures/SMART-1 team cold day.webp" class="image-slide lazy_load" alt="N21AP and SMART-1 Team In Snow" title="N21AP and SMART-1 Team In Snow" />
</div>
<div class="slide">
<img src="media/pictures/N21AP getting fuel.webp" class="image-slide lazy_load" alt="N21AP Refueling" title="N21AP Refueling" />
</div>
<div class="slide">
<img src="media/pictures/N55PQ preflight checks.webp" class="image-slide lazy_load" alt="N55PQ Pre-flight" title="N55PQ Pre-flight" />
</div>
<div class="slide">
<img src="media/pictures/Entering mission data.webp" class="image-slide lazy_load" alt="Entering Flight Plan" title="Entering Flight Plan" />
</div>
<div class="slide">
<img src="media/pictures/Operations Center.webp" class="image-slide lazy_load" alt="SMART-1 Operations Center" title="SMART-1 Operations Center" />
</div>
<div class="slide">
<img src="media/pictures/SMART-1 N78AP close up.webp" class="image-slide lazy_load" alt="N78AP Low Pass" title="N78AP Low Pass" />
</div>
<div class="slide">
<img src="media/pictures/SMART-1 downtime fun.webp" class="image-slide lazy_load" alt="SMART-1 downtime fun" title="SMART-1 downtime fun" />
</div>
<div class="slide">
<img src="media/pictures/Park SMART-1.webp" class="image-slide lazy_load" alt="Park SMART-1" title="Park SMART-1" />
</div>
<a class="previous" onclick="changeSlide(-1)">❮</a>
<a class="next" onclick="changeSlide(1)">❯</a>
<div class="dots">
<div class="col">
<img src="media/pictures/Calm cold day thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(1)" alt="N21AP Cold Day" />
</div>
<div class="col">
<img src="media/pictures/N21AP cold day thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(2)" alt="N21AP In Snow" />
</div>
<div class="col">
<img src="media/pictures/Getting mission ready thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(3)" alt="N78AP Entering Mission Data" />
</div>
<div class="col">
<img src="media/pictures/Final walkaround thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(4)" alt="Pre-Takeoff Checks" />
</div>
<div class="col">
<img src="media/pictures/SMART-1 team cold day thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(5)" alt="N21AP and Smart-1 Team In Snow" />
</div>
<div class="col">
<img src="media/pictures/N21AP getting fuel thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(6)" alt="N21AP Refueling" />
</div>
<div class="col">
<img src="media/pictures/N55PQ preflight checks thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(7)" alt="N55PQ Pre-Flight" />
</div>
<div class="col">
<img src="media/pictures/Entering mission data thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(8)" alt="N78Ap Low Pass" />
</div>
<div class="col">
<img src="media/pictures/Operations Center thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(9)" alt="SMART-1 Operations center" />
</div>
<div class="col">
<img src="media/pictures/SMART-1 N78AP close up thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(10)" alt="SMART-1 N78AP close up" />
</div>
<div class="col">
<img src="media/pictures/SMART-1 downtime fun thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(11)" alt="SMART-1 downtime fun" />
</div>
<div class="col">
<img src="media/pictures/Park SMART-1 thumbnail.webp" class="modal-preview hover-shadow" onclick="toSlide(12)" alt="Park SMART-1" />
</div>
</div>
</div>
</div>

Related

Modal, how to open other pages from directory ? JS HTML CSS

<div class="row">
<div class="column">
<div class="container">
<img
src="../images/img1.jpg"
alt="Avatar"
class="image"
width="200"
/>
<div class="black">
<div style="width:100%;cursor:pointer" id="modal1"><h1>Marathon</h1></div>
</div>
</div>
<div class="container">
<img
src="../images/img5.jpg"
alt="Avatar"
class="image"
width="200"
/>
<div class="black">
<div style="width:100%;cursor:pointer" id="modal5"><h1>Weight Lifting</h1></div>
</div>
</div>
<div class="container">
<img
src="../images/img8.jpg"
alt="Avatar"
class="image"
width="200"
/>
<div class="black">
<div style="width:100%;cursor:pointer" id="modal8"><h1>Jogging</h1></div>
</div>
</div>
</div>
</div>
How to add modals so I can open other pages ( image01.html, image05.html ....) when I click on h1 from that photo.. I am new in this and i can't find a soulution. Any help would be great

fancybox two images shown at the same window

I have a gallery and images contains other images. So After click on image thubnail I want to see full size of thubnail image and other images which are not represent on gallery because they are just part of that main image. This images will be reached trough scrolling and will be shown in same window with main image.
Now i Have code like this(with one image after click on thubnail) :
<div class="col-3 thumb">
<a data-fancybox="gallery" href="1.jpg" class="fancybox" data-caption="Description 1">
<div class="hovereffect">
<img class="img-fluid" src="1.jpg" alt="">
<div class="overlay">
<h2>Tittle 1</h2>
</div>
</div>
</a>
</div>
<div class="col-3 thumb">
<a data-fancybox="gallery" href="2.jpg" class="fancybox" data-caption="Description 2">
<div class="hovereffect">
<img class="img-fluid" src="2.jpg" alt="">
<div class="overlay">
<h2>Tittle 2</h2>
</div>
</div>
</a>
</div>
<div class="col-3 thumb">
<a data-fancybox="gallery" href="3.jpg" data-caption="Description 3">
<div class="hovereffect">
<img class="img-fluid" src="3.jpg" alt="">
<div class="overlay">
<h2>Tittle 3</h2>
</div>
</div>
</a>
</div>
Update
Solve this with id:
<a data-fancybox="gallery" href="#img_1" class="fancybox">
<div style="display:none">
<div id="img_1"">
<div class="container">
<div class="row">
<div class="col-7" >
<a data-fancybox="gallery1" href="1.jpg" class="fancybox">
<img class="img-fluid" src="1.jpg" />
</a>
</div>
</div>
</div>
</div>
</div>
So, basically, you are asking for two way navigation (e.g., two dimensional), but I have never stumbled upon such script that would fully support that.
You can display additional images under the main image, but they will not have the same functionality (e.g., zooming/dragging/etc) or you can display them as inline elements (obviously, there would be no image-related functionality).

Hover not working for the image gallery

Image hover is not working in the below code. Whenever I try to hover on a particular image that particular image is not being displayed. But if I remove the second portion (In comments in code) from code then it's working perfectly.
<div class="container marginbot-50">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="wow flipInY" data-wow-offset="0" data-wow-delay="0.4s">
<div class="section-heading text-center">
<h2 class="h-bold" style="margin-top:90px">1. Meadows Towers</h2>
<div class="divider-header"></div>
<p style="text-align:justify">It is a major construction firm.
</p>
</div>
</div>
</div>
</div>
<div class="gallery" align="center"><br>
<h4>Check details about project below</h4>
<div class="thumbnails">
<img onmouseover="preview.src=img1.src" name="img1" src="img/works/1.jpg" alt="" />
<img onmouseover="preview.src=img2.src" name="img2" src="img/works/2.jpg" alt="" />
<img onmouseover="preview.src=img3.src" name="img3" src="img/works/3.jpg" alt="" />
<img onmouseover="preview.src=img4.src" name="img4" src="img/works/4.jpg" alt="" />
<img onmouseover="preview.src=img5.src" name="img5" src="img/works/5.jpg" alt="" />
</div>
<div class="preview" align="center">
<img name="preview" src="img/works/1.jpg" alt=""/>
</div>
<!--*****************Second portion*******************-->
<div class="wow flipInY" data-wow-offset="0" data-wow-delay="0.4s">
<div class="section-heading text-center">
<h2 class="h-bold" style="margin-top:90px">2.Shangrilla</h2>
<div class="divider-header"></div>
<p style="text-align:justify"> Construction is a major construction firm.
Our goal is to reach all the section of people from 2BHK, 3BHK and 4BHK.
</p>
</div>
</div>
</div>
</div>
<div class="gallery" align="center"><br>
<h4>Check details about project below</h4>
<div class="thumbnails">
<img onmouseover="preview.src=img1.src" name="img1" src="img/works/1.jpg" alt="" />
<img onmouseover="preview.src=img2.src" name="img2" src="img/works/2.jpg" alt="" />
<img onmouseover="preview.src=img3.src" name="img3" src="img/works/3.jpg" alt="" />
<img onmouseover="preview.src=img4.src" name="img4" src="img/works/4.jpg" alt="" />
<img onmouseover="preview.src=img5.src" name="img5" src="img/works/5.jpg" alt="" />
</div>
<div class="preview" align="center">
<img name="preview" src="img/works/1.jpg" alt=""/>
</div>
</body>
Have this function which accepts target and source and changes to required target's src
function changeSrc(control,target)
{
var targets=target.children[0]; //get its children
targets.setAttribute('src',control.getAttribute('src'));//change its src
}
Your updated HTML
Instead of onmouseover="preview.src=img1.src" call function onmouseover as onmouseover="javascript:changeSrc(this,this.parentElement.nextElementSibling)"
DEMO HERE
The problem with your previous code was, there were 2 elements with same name preview and when you said preview.src it fetched list of elements and wasn't able to assign it to proper preview - element.

Adding Additional Slide using HTML causes two slides to merge

I'm attempting to add an additional slide to my slideshow and for some reason it seems to merge two slides. I'm not sure exactly what I've done to cause this. Any suggestions are greatly appreciated.
Slider Source:
<!-- BEGIN ASYNC SLIDER -->
<div id="content-slider">
<ul id="async-slider">
<li class="slide">
<div class="three-fifth fl-left" style="width: 425px; height: 242px">
<h2>Brighter World Lighting - NY</h2>
<h3><font size="5"><i>"A not just for profit company!"</i></font></h3>
<p>...</a>
</div>
<img class="fl-right" src="img/logolrg.png" alt="image" width="468" height="329" />
</li>
<li class="slide">
<div class="three-fifth fl-left">
<h2> </h2>
<img class="fl-right" src="img/HOR1.jpg" alt="image" width="450" height="320" />
<h3> </h3>
<p>...</a>
</div>
</li>
<li class="slide">
<div class="three-fifth fl-left">
<h2>Energy Efficient Lighting Products to fit your needs</h2>
<h3><font size="5"><i>T8, T12, E27, Outdoor Lighting, etc</font></i></h3>
<p>...</a>
</div>
<img class="fl-right" src="img/sliders/async/2Transparent.png" alt="image" width="347" height="305" />
</li>
<li class="slide">
<div class="three-fifth fl-left">
<h2> </h2>
<img class="fl-right" src="img/REBATE.jpg" alt="image" width="450" height="321" />
<h3> </h3>
<p>...</a>
</div>
</li>
<li class="slide">
<div class="three-fifth fl-left">
<h2>Tax Credits, Rebates, Financing and Grants available for those who qualify</h2>
<div>
<h3><font size="5"><i>Federal, state and local tax incentives available<br />
Utility company discounts and rebates
<br />
Project financing available to offset costs vs. Savings</font>
</div>
<h3></a>
</h3></div>
<img class="fl-right" src="img/sliders/async/3.gif" alt="image" />
</li>
<li class="slide">
<div class="three-fifth fl-left">
<h2> </h2>
<img class="fl-right" src="img/REBATE.jpg" alt="image" width="450" height="321" />
<h3> </h3>
<p>...</a>
</div>
</li>
<li class="slide">
<img class="fl-left" src="img/sliders/async/4Transparent.png" alt="image" width="347" height="305" />
<div class="three-fifth last fl-right">
<h2>Allow us to create a comprehensive energy partnership program profile for your business</h2>
<h3><font size="5"><i>Calculate your Energy Savings in Real Time!</i></font></h3>
<p>...</a>
</div>
</li>
</ul>
<div class="clear"></div><!-- end clearfix -->
</div><!-- end content-slider -->
<!-- END ASYNC SLIDER -->
Screenshot of merged slides:
(you may want to visit the live site to compare proper and improper slides)

Anything slider does not display images [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm trying to get the slider on the following page to display the freakin' images on the slider! http://www.ultimatebowhuntingtv.com/index.php/partners/ You can see in chrome developer tools under 'resources' that the images are being called from the correct location, so I just can't see why I can't see the images. I am using the AnythingSlider: http://css-tricks.com/anythingslider-jquery-plugin/. And the code is below. Slider html below the
<?php
/*
Template Name: Partners
*/
?>
<?php get_header(); ?>
</div>
</div>
<script src="/js/jquery-1.7.2.min.js"></script>
<script src="/js/lightbox.js"></script>
<link href="/js/lightbox.css" rel="stylesheet" />
<!-- Anything Slider -->
<link rel="stylesheet" href="/wp-content/themes/onplay/css/anythingslider.css">
<script src="/wp-content/themes/onplay/js/jquery.anythingslider.js"></script>
<!-- Define slider dimensions here -->
<style>
#slider { width: 700px; height: 390px; }
</style>
<!-- AnythingSlider initialization -->
<script>
// DOM Ready
var J=jQuery.noConflict();
J(function(){
J('#slider').anythingSlider();
});
</script>
<div id="main">
<div class="wrap-special">
<div class="content full-width-special">
<div class="post">
<h1 class="title-special" style="display: none;"><?php the_title(); ?></h1>
<?php wp_reset_query(); if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php edit_post_link( __('Edit', 'wpzoom'), ' ', ''); ?>
<div class="entry " style="color: #fff;">
<img src="/images/bkg-title-partners.jpg" /><br />
<!--INSERT SLIDER HERE-->
<ul id="slider">
<li><img src="/images/slider/slider-1.jpg" alt=""/></li>
<li><img src="/images/slider/slider-2.jpg" alt=""/></li>
<li><img src="/images/slider/slider-3.jpg" alt=""/></li>
<li><img src="/images/slider/slider-4.jpg" alt=""/></li>
</ul>
<div class="clear"></div>
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-scoutlook.jpg" alt="ScoutLook Weather" />
<div class="text">
<div class="partner-title">ScoutLook</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">Scoutlook is the most advanced weather resource available period! You have instant access to precise weather details, solunar data, game feeding times, wind direction helping you with Scent Cone, Deer Logs and much more. We rely on Scoutlook in our preparation and while we are in the field.</div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-scoutlook-thumb-1.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-scoutlook-thumb-2.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-nufletch.jpg" alt="NuFletch Archery" />
<div class="text">
<div class="partner-title">NuFletch Archery</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text"></div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-nufletch-thumb-1.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-pse.jpg" alt="PSE Archery" />
<div class="text">
<div class="partner-title">PSE Archery</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">We have used PSE Bows for the past five years and love them. Why?...It is because they are the fastest bows on the market and have become some of the most accurate bows a bowhunter can shoot. There are a lot of bows to choose from and we have shoot nearly all of them over the years. We are shooting the new PSE Dream Season DNA bow this year and new Smoke Crossbow. The DNA is the fastest, quietest, and most accurate bow I have put in my hands to date...</div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-pse-thumb-1.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div style="clear: left;"></div>
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-muddy-bloodsport.jpg" alt="Muddy Bloodsport" />
<div class="text">
<div class="partner-title">Muddy Bloodsport</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">Bloodsport arrows use Fly Straight Technology that allows them to be some of the most accurate arrows on the market. Additionally, the Carbon technology used ensures that they are the most durable arrow on the market. We have to know our arrow is going to be accurate and be durable so we can use them time and time again...</div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-bloodsport-thumb-1.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-big-green-targets.jpg" alt="Big Green Targets" />
<div class="text">
<div class="partner-title">Big Green Targets</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">Big Green Targets are the only target we use when we practice in the backyard, range or when we arrive at our hunting destination. They are made from 100% recycle material, heat bonded layered target and weather proof. This leads to a durable target that will last for long time withstanding thousands of shots. They have SUPER EASY Arrow Removal and are made here in the USA...</div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-BGT-thumb-1.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-BGT-thumb-2.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-BGT-thumb-3.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-redneck-blinds.jpg" alt="Redneck Blinds" />
<div class="text">
<div class="partner-title">Redneck Blinds</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">Redneck Blinds are a new addition to our hunting tools. When you step into a Red Neck Blind you will see why they are becoming a market leader. The 360 degree shooting ability, carpet floors, adjustable windows and generous room for several hunters or camera man. We also love them because they help control our scent!</div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-RNB-thumb-1.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div style="clear: left;"></div>
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-spypoint.jpg" alt="Spypoint Game Cameras" />
<div class="text">
<div class="partner-title">Spypoint Game Cameras</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">Spypoint is becoming the market leader when it comes to producing the most innovative game cameras on the market. We rely on and use the LIVE 3G, Tiny W2 and new Tiny W3 wireless cameras to help us monitor our deer herd year round. Spypoint also produces high quality security cameras such as the BF-8 with BLACK LED Technology.</div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-spypoint-thumb-1.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-spypoint-thumb-2.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-spypoint-thumb-3.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-spypoint-thumb-4.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-spypoint-thumb-5.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-swhacker.jpg" alt="Swhacker Broadhead" />
<div class="text">
<div class="partner-title">Swhacker Broadheads</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">When it comes to broadheads Swhacker has become our broadhead of choice. We have 100% confidence in these broadheads for both our bows and crossbows. They Fly like a field point and have a huge cutting diameter. Broadside shots, angled shots or less than perfect shots the Swhacker gets the job done. I shot my Turkey Grand Slam with the Swhacker...</div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-swhacker-thumb-1.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-yeti.jpg" alt="Yeti Coolers" />
<div class="text">
<div class="partner-title">Yeti Coolers</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">We started using Yeti coolers this year as we Bowfish, Spearfish, and everyday use. We love how durable they are and how well they keep our food and game cool. Especially, on those long days on the water or traveling back from hunting trip. We are using the Series 35 and 65 this year and love them!</div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-yeti-thumb-1.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div style="clear: left;"></div>
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-always-lethal.jpg" alt="Under Armor Always Lethal" />
<div class="text">
<div class="partner-title">Under Armor Always Lethal</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">There is nothing worse than being too hot, too cold or uncomfortable in the woods. Minimizing your movement is key to our success not matter if we are turkey hunting or bowhunting big game. Under Armour clothing keeps us cool and comfortable in the Spring and Summer. During the Fall and Winter we can stay in the woods longer because of the layering technology. We are also using the new Scent Control Clothing along with HAW Rubber Boots that are extremely comfortable.</div>
<!--<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-lethal-thumb-1.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>-->
</div>
</div>
</div><!--close partner box-->
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-mossy-oak.jpg" alt="Mossy Oak" />
<div class="text">
<div class="partner-title">Mossy Oak</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">Mossy Oak Infinity keeps us concealed during the fall no matter where we are bowhunting. The level of depth, detail and definition is awesome with this pattern. Our goal is the ensure we cover every base we can to put the advantage in our corner no matter if we are turkey hunting or bowhunting big game. Mossy Oak Infinity in the fall gives us that edge..In the Spring we rely on Mossy Oak Obsession based on lighter colors and green elements incorporated into the pattern.</div>
<!--<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-mossy-thumb-1.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>-->
</div>
</div>
</div><!--close partner box-->
<div id="partner-box">
<div id="Pwrapper">
<img class="hover" src="/images/partners/partner-300x250-muddy.jpg" alt="Muddy" />
<div class="text">
<div class="partner-title">Muddy</div>
<div class="partner-website">Visit their website</div>
<div class="partner-text">Muddy Tree Stands in our opinion are some of the most versatile stands on the market. We love the adjustablity of their lock on stands that allow you to set up in a less than straight tree and still be comfortable for all day sit. Additionally, we use their safeguard harness for ourselves and our boys who hunt with us. I have 100% confidence in these safety harnesses to keep me and my children safe..</div>
<div class="partner-gTitle">Gallery <span style="color:#aeaeae; font-weight: normal;">- Click Image To Expand</span></div>
<div class="partner-gallery">
<img src="/images/partners/gallery-muddy-thumb-1.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-muddy-thumb-2.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-muddy-thumb-3.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-muddy-thumb-4.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-muddy-thumb-5.jpg" class="partner-gallery-thumb" />
<img src="/images/partners/gallery-muddy-thumb-7.jpg" class="partner-gallery-thumb" />
<div style="clear: left;"></div>
</div>
</div>
</div>
</div><!--close partner box-->
<div style="clear: left;"></div>
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'wpzoom').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<div class="clear"></div>
</div><!-- / .entry -->
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria', 'wpzoom');?>.</p>
<?php endif; ?>
<div class="clear"></div>
</div><!-- / .post -->
<div class="clear"></div>
</div><!-- / #content -->
<?php get_footer(); ?>
Your #slider container is set to display:none in your file style.css, at line 274.
Remove the display style or set it to block and your slider will show.

Categories