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
#menu-top-header .back.js-generated { | |
display: none !important; | |
} |
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 | |
/** | |
* Implements styles set in the theme customizer | |
* | |
* @package Customizer Library Demo | |
*/ | |
if ( ! function_exists( 'customizer_library_demo_build_styles' ) && class_exists( 'Customizer_Library_Styles' ) ) : | |
/** | |
* Process user options to generate CSS needed to implement the choices. | |
* |
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
.tribe-events-event-cost { | |
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
function custom_field() { | |
global $post; | |
$url = get_post_meta( $post->ID, 'hero_style', true ); | |
if ( ! empty( $url ) ) { | |
echo 'My Button'; | |
} | |
} | |
add_filter( 'field', 'custom_field' ); |
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
.home_events_wrap .medium-4 { | |
width: 45%; | |
} |
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
footer#site_footer .footer_widget_wrap { | |
margin-bottom: 0; | |
} | |
footer#site_footer { | |
padding-top: 0; | |
} |
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
#tribe-events .vcard { | |
display: block; | |
} |
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
/* The Logo Space */ | |
.bottom_nav_wrap .large-3 { | |
width: 40%; | |
} | |
/* The Navigation Space */ | |
.bottom_nav_wrap .large-9 { | |
width: 60%; | |
} |
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
[rescue_button color="black" url="http://weloveleathermilk.co.uk/shop/" title="Buy Now" target="blank" class="right" border_radius="3px"] Buy Now [/rescue_button] |
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_filter( 'delete_attachment', 'delete_retina_support_images' ); | |
/** | |
* Delete retina-ready images | |
* | |
* This function is attached to the 'delete_attachment' filter hook. | |
* Reference: http://code.tutsplus.com/tutorials/ensuring-your-theme-has-retina-support--wp-33430 | |
*/ | |
function delete_retina_support_images( $attachment_id ) { | |
$meta = wp_get_attachment_metadata( $attachment_id ); |