.gmap-container { border: 4px double rgba(0, 0, 0, 0.5); height: 300px; width: 100%; margin-bottom: 30px; overflow: hidden; } .googlemappa iframe { width: 100%; }
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
| .featured-blog-img { | |
| @include column(1 / 1); | |
| float: left; | |
| clear: both; | |
| text-align: inherit; | |
| margin-left: 0%; | |
| margin-right: 3%; | |
| width: 100%; | |
| height: 200px; | |
| overflow: hidden; |
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
| <p itemscope itemtype="http://data-vocabulary.org/Review" class="testimonial"> | |
| <?php | |
| global $wp_embed; | |
| if (get_field('video') != '') { | |
| ?> | |
| <div class="video-wrapper-testimonial"> | |
| <div class="testimonial-video"> | |
| <?php | |
| $video = get_field('video'); |
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('allow_full_width_image')) { | |
| $values = get_field('allow_full_width_image'); | |
| if (in_array("yes", $values)) { | |
| $isfullwidth = ' style="width:100%;hight:auto;"'; | |
| } else { | |
| $isfullwidth = ''; | |
| } | |
| } | |
| ?> |
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
| RewriteEngine On | |
| RewriteCond %{HTTP_HOST} !^www\. | |
| RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] |
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 | |
| /* | |
| * Create dynamically generated and sanitized CSS classes as a list from a taxonomy's terms | |
| * Example: <a class="<?php echo taxonmy_terms_as_css_list('Geographical Locations'); ?>" | |
| * | |
| */ | |
| function taxonmy_terms_as_css_list($term_name) { | |
| // get the taxonomy terms |