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 my_scripts_method() { | |
if ( !is_admin() ) { | |
wp_enqueue_script('jquery-ui-accordion'); | |
wp_enqueue_script( | |
'custom-accordion', | |
get_stylesheet_directory_uri() . '/js/accordion.js', | |
array('jquery') | |
); | |
wp_enqueue_script('jquery-ui-tabs'); |
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 style="padding: 15px; margin-bottom: 15px; background: #ffffde; border: 1px solid #ddd; width: 85%;" align="center"> | |
<h2>Type the Name Of Your Offer Here</h2> | |
Type the benefit of taking your offer here | |
<a href="https://www.robertmcmillin.com" target="_blank">Click here to access [OFFER]</a> | |
</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
.loader { | |
text-align: center; | |
} | |
.loader span { | |
display: inline-block; | |
vertical-align: middle; | |
width: 10px; | |
height: 10px; | |
margin: 50px auto; | |
background: black; |
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
* { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
html { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
line-height: 1.4; | |
} | |
body { |
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
Sub TranslateDocIntoDocx() | |
Dim objWordApplication As New Word.Application | |
Dim objWordDocument As Word.Document | |
Dim strFile As String | |
Dim strFolder As String | |
strFolder = "E:\Temp\" | |
strFile = Dir(strFolder & "*.doc", vbNormal) | |
While strFile <> "" |
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 you need to edit or remove post info on genesis and studiopress themes. | |
//* Customize the entry meta in the entry header (requires HTML5 theme support) | |
add_filter( 'genesis_post_info', 'sp_post_info_filter' ); | |
function sp_post_info_filter($post_info) { | |
$post_info = ''; | |
return $post_info; | |
} |
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-hide { | |
visibility: hidden; | |
clip: rect(0px, 0px, 0px, 0px); | |
position: absolute; | |
display: none; | |
} | |
@media only screen and (min-width: 800px) { | |
.mobile-hide { | |
visibility: visible; |
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
.stitched { | |
padding: 20px; | |
margin: 10px; | |
background: #67bbab; | |
color: #fff; | |
font-size: 21px; | |
font-weight: bold; | |
line-height: 1.3em; | |
border: 2px dashed #fff; |
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
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { | |
.largewhite br { content: ' '; } | |
} |