This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
function newDoc() { | |
window.location.assign("https://www.siouxlandoralsurgery.com") | |
} | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
icon-antibiotic-treatment : Antibiotic Treatment | |
icon-common-dental-problems : Common Dental Problems | |
icon-crown-lengthening : Crown Lengthening | |
icon-decay-prevention : Decay Prevention | |
icon-early-dental-care : Early Dental Care | |
icon-forhead-brow-lift : Forhead Brow Lift | |
icon-home-care : Home Care | |
icon-nerve-repositioning : Nerve Repositioning | |
icon-peds-surgery : Peds Surgery | |
icon-restorations : Restorations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div class="row no-gutters"> | |
<?php | |
// Testimonial single Looop | |
$testimonial_loop = array( | |
'numberposts' => -1, | |
'post_type' => 'testimonial', | |
'showposts' => '4', | |
); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add Sidebar with Menu just for this page type / If Instructions Second Language is in place then add that menu if not add Instructions | |
add_action( 'genesis_before_sidebar_widget_area', 'nuvo_add_custom_menu' ); | |
function nuvo_add_custom_menu () { | |
echo '<div class="spacer10"></div><div class="widget-wrap col-xs-6 col-md-12">'; | |
if ( is_nav_menu( 'Instructions Second Language' ) ) { | |
wp_nav_menu( array('menu' => 'Instructions Second Language' )); | |
} else { | |
wp_nav_menu( array('menu' => 'Instructions' )); | |
} | |
echo '</div>'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Old Version | |
<div class="row"> | |
<div class="col-md-12 col-sm-12 col-xs-12"> | |
<a class="fancybox-youtube" href="http://youtu.be/A2BC3s1Pg8U?autoplay=1&autohide=1&rel=0&showinfo=0"><span id="playhover"></span><img class="alignnone size-large wp-image-134" src="/wp-content/uploads/2015/08/Dental-Implant-Proc-Harris-358x200.jpg" alt="Dental-Implant-Proc--Harris" width="358" height="200" /></a> | |
</div> | |
</div> | |
New Version | |
<div class="row"> | |
<div class="col-md-12 col-sm-12 col-xs-12"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Loop through post objects (assuming this is a multi-select field) ( don't setup postdata ) | |
* Using this method, the $post object is never changed so all functions need a seccond parameter of the post ID in question. | |
*/?> | |
<div class="row"> | |
<div class="col-xs-12 related_videos secondary_color"> | |
<h2 class="clearboth">Related Videos</h2> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<strong><a href="">Sioux Falls</a></strong> | |
6401 S Minnesota Ave | |
Sioux Falls, SD 57108 | |
<strong>Other Locations</strong> | |
<strong><a href="">Mitchell</a></strong> | |
<strong><a href="">Yankton</a></strong> | |
<strong><a href="">Brookings</a></strong> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Hot fix 1.18.2016 fixed the team page to look better on mobile. -Gera*/ | |
@media only screen and (max-width: 800px) { | |
.gallery-columns-3 .gallery-item { | |
width: 100%; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Iphone Landscape | |
--------------------------------------------- */ | |
@media only screen and (min-device-width : 320px) and (max-device-width : 750px) and (orientation : landscape) { | |
.fancybox-wrap:before { | |
display: none !important; /*Remove the logo in landscape*/ | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* iPad Landscape and Portrait | |
--------------------------------------------- */ | |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { | |
/*Misc fix for responsive youtube thumb in mobile mode*/ | |
.responsive-fix { | |
width: 100%; height: 100%; display: block; | |
} | |
} | |
/* Make some mobile Tweaks |