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
.ticker-tape-container { | |
overflow-x: hidden; | |
max-width: 700px; | |
width: 100%; | |
display: flex; | |
} | |
.ticker-tape { | |
--direction: normal; | |
--duration: 60s; |
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
.screen-reader-only { | |
border: 0; | |
clip: rect(0 0 0 0); | |
height: auto; | |
margin: 0; | |
overflow: hidden; | |
padding: 0; | |
position: absolute; | |
width: 1px; | |
white-space: nowrap; |
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
/* --- Arrow in middle: top size is 150px, with 10px gap betwween top and bottom --- */ | |
.top { | |
clip-path: polygon(0 0,100% 0,100% calc(100% - 150px),calc(50% + 150.00px) calc(100% - 150px),50% 100%,calc(50% - 150.00px) calc(100% - 150px),0 calc(100% - 150px)); | |
} | |
.bottom { | |
clip-path: polygon(0 0,calc(50% - 4.14px - 150.00px) 0,50% calc(150px + 4.14px),calc(50% + 4.14px + 150.00px) 0,100% 0,100% 100%,0 100%); | |
margin-top: -140px; | |
} |
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
:target::before { | |
content: ''; | |
display: block; | |
height: 130px; | |
margin-top: -130px; | |
} |
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
genesis_register_sidebar( array( | |
'id' => 'before-blog', | |
'name' => __( 'Before Blog Widget', 'wpsites' ), | |
'description' => __( 'This is the before post widget area on the blog page only.', 'wpsites' ), | |
) ); | |
/** | |
* @author Brad Dalton - WP Sites | |
* @example http://wp.me/p1lTu0-9Jr | |
*/ | |
add_action( 'genesis_before_loop', 'wpsites_before_blog_widget', 9 ); |
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
Redirect page on WordPress.com: | |
https://wordpress.com/domains/add/site-redirect/askdesigndev.wordpress.com | |
Good information: | |
https://www.isitwp.com/how-to-move-your-site-from-wordpress-com-to-wordpress-org/#redirect | |
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
/** RESPONSIVE MENU - by designnify - https://gist.github.com/designnify/e42f9430163aa6da15a0 **/ | |
// Add the following in child theme’s functions.php: | |
// Enqueue Scripts and Styles | |
//* Activate the use of Dashicons | |
add_action( 'wp_enqueue_scripts', 'load_dashicons_front_end' ); | |
function load_dashicons_front_end() { | |
wp_enqueue_style( 'dashicons' ); | |
} | |
//* Enqueue scripts for Responsive menu |
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
HOW TO BUILD A WORKING BOOTSTRAP CONTACT FORM | |
https://bootstrapious.com/p/how-to-build-a-working-bootstrap-contact-form | |
These are the instrux. and templates I used to revamp the shop-order-painting form on my website. |
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
Code is from Facebook's developers area: | |
https://developers.facebook.com/docs/plugins/page-plugin/ | |
Max width = 500 px | |
There are plugins that will do similar things. |
NewerOlder