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
video::-internal-media-controls-download-button { | |
display:none; | |
} | |
video::-webkit-media-controls-enclosure { | |
overflow:hidden; | |
} | |
video::-webkit-media-controls-panel { | |
width: calc(100% + 30px); /* Adjust if necessary */ | |
} |
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
/* For when the mouse moves on to the image */ | |
.brands img:hover { | |
-webkit-transform: scale(.65) translateY(-4px); | |
-ms-transform: scale(.65) translateY(-4px); | |
transition: all .4s ease-in-out; | |
transform: scale(1.2) translateY(-4px); | |
} | |
/* For when the mouse moves off the image */ | |
.brands img { |
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
UPDATE `wp_posts` | |
SET `comment_status` = 'closed' | |
WHERE `post_type` = 'attachment' | |
AND `comment_status` = 'open'; |
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
div.wh-widget-send-button-wrapper div.wh-widget-send-button-wrapper-list>a.wh-widget-button div.wh-widget-button-icon { | |
border-radius: 10% !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
<form role="search" method="get" id="searchform" class="searchform" action="https://mydomainname.com/"> | |
<div> | |
<label class="screen-reader-text" for="s">Search for:</label> | |
<input type="text" value="" name="s" id="s"> | |
<input type="submit" id="searchsubmit" value="Search"> | |
</div> | |
</form> |
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
<form role="search" method="get" id="searchform" class="searchform" action="https://mydomainname.com/"> | |
<div> | |
<input type="text" placeholder="Find the perfect book" value="" name="s" id="s"> | |
<input type="submit" id="searchsubmit" value="Search"> | |
</div> | |
</form> |
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( 'caldera_forms_phone_js_options', function( $options){ | |
//Use ISO_3166-1_alpha-2 formatted country code | |
$options[ 'initialCountry' ] = 'GB'; | |
return $options; | |
}); |