This file contains hidden or 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
/** Mobile **/ | |
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) { | |
} | |
/** Tablet **/ | |
@media only screen and (min-width : 768px) and (max-width : 1024px) { | |
This file contains hidden or 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
.slick-slide { | |
margin: 0 10px; | |
} | |
.slick-list { | |
margin: 0 -10px; | |
} |
This file contains hidden or 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
.slick-slider { | |
.slick-prev { | |
&:before { | |
} | |
} | |
.slick-next { |
This file contains hidden or 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
var waypoint = new Waypoint({ | |
element: jQuery('.logo-area'), | |
handler: function(direction) { | |
if(direction === "up"){ | |
jQuery('#sticky-nav--container').removeClass('sticky'); | |
} else { | |
jQuery('#sticky-nav--container').addClass('sticky'); | |
} | |
} | |
}); |
This file contains hidden or 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
if(jQuery('.project-profile-listings').length) { | |
var mixer = mixitup('.project-profile-listings', { | |
animation: { | |
duration: 300 | |
} | |
}); | |
} |
This file contains hidden or 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
<h1> | |
<?php if( get_field('custom_title') ): ?> | |
<?php the_field('custom_title'); ?> | |
<?php else: ?> | |
<?php the_title(); ?> | |
<?php endif; ?> | |
</h1> |
This file contains hidden or 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 if( have_rows('') ) : ?> | |
<?php while( have_rows('') ) : the_row(); ?> | |
<?php endwhile; ?> | |
<?php endif; ?> |
This file contains hidden or 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 if( have_rows('') ): ?> | |
<div class="slider-name"> | |
<?php while ( have_rows('') ) : the_row(); ?> | |
<div> | |
</div> |
This file contains hidden or 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 $related_posts = get_field( 'acf_select' ); ?> | |
<?php if($related_posts): ?> | |
<?php foreach($related_posts as $post): ?> | |
<?php setup_postdata($post); ?> | |
<?php $page_id = get_the_ID(); ?> | |
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | |
This file contains hidden or 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 if(get_field('')): $i = 0; ?> | |
<?php while(has_sub_field('')): $i++; ?> | |
<div class="section-<?php echo $i; ?>"> | |
</div> | |
<?php endwhile; ?> | |