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 | |
/*repeater speakers */ | |
if( have_rows('speakers') ):?> | |
<h2 class="entry-title center red">Speakers</h2><?php | |
?><div class="row stretch-xs center-xs"><?php | |
while ( have_rows('speakers') ) : the_row(); | |
?> | |
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
<h2>How We Work</h2> | |
<!-- this is where I inserted my icon --> | |
<i class="fa fa-gears work-fa" aria-hidden="true"></i> | |
<!-- end Font Awesome icon --> | |
<?php | |
$args = array( | |
'post_type' => 'work_items', // enter your custom post type | |
'posts_per_page'=> '3', // return only 1 post | |
'orderby' => 'rand' |
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
.work-fa { | |
font-size: 150px !important; | |
color: #84BA32; | |
margin-top: 0; | |
margin-bottom: 30px; | |
text-align: center; | |
display: block !important; | |
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
/*add to custom.css*/ | |
.title-area { | |
float: left; | |
padding: 16px 0; | |
width: 100%; | |
max-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
/*new by marisa */ | |
media only screen and (max-width: 1140px) and (min-width: 993px) | |
.node-type-park .gallery-block-detail { | |
top: 407px!mportant; | |
} | |
.node-type-park .gallery-block-detail { | |
background-color: #008851!mportant; | |
color: #fff!mportant; | |
height: 277px!mportant; |
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 | |
/** | |
* Archive Name: Blog | |
*/ | |
get_header(); ?> | |
<div id="blog"> | |
<div id="content"> |
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
<!--buyer story --> | |
<div class="buyer-wrapper"> | |
<?php | |
if ( get_query_var('paged') ) $paged = get_query_var('paged'); | |
if ( get_query_var('page') ) $paged = get_query_var('page'); | |
$query = new WP_Query |
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 | |
$args = array( | |
'post_type' => 'product', // enter your custom post type | |
'posts_per_page'=> '9', // return only 1 post | |
'orderby' => 'menu_order', // order | |
'order' => 'ASC' | |
); |
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
/* start all page related generic css */ | |
.page-civicrm-simple #printer-friendly {display: none;} | |
#dialog-park-description a {color: #008851;} | |
a {color: #008851;} | |
.page-hike-finder-map h1 {display:none;} |
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
/* start all page related generic css */ | |
.page-civicrm-simple #printer-friendly {display: none;} | |
#dialog-park-description a {color: #008851;} | |
a {color: #008851;} | |
.page-hike-finder-map h1 {display:none;} |