This file contains 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
https://google-webfonts-helper.herokuapp.com/fonts/inter?subsets=latin | |
Hook Element: Preload Fonts | |
<link rel="preload" as="font" type="font/woff2" href="https://domain.com/wp-content/fonts/poppins-v15-latin-regular.woff2" crossorigin="anonymous"> | |
<link rel="preload" as="font" type="font/woff2" href="https://domain.com/wp-content/fonts/luthier-regular.woff2" crossorigin="anonymous"> | |
<link rel="preload" as="font" type="font/woff2" href="https://domain.com/wp-content/fonts/josefin-sans-v17-latin-regular.woff2" crossorigin="anonymous"> | |
<link rel="preload" as="font" type="font/woff2" href="https://domain.com/wp-content/fonts/poppins-v15-latin-500.woff2" crossorigin="anonymous"> | |
<link rel="preload" as="font" type="font/woff2" href="https://domain.com/wp-content/fonts/poppins-v15-latin-600.woff2" crossorigin="anonymous"> | |
This file contains 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 wb_login_head(){ | |
?> | |
<style> | |
#login{ | |
width:50%; | |
float:left; | |
} | |
#wbd-login-left{ | |
width:50%; | |
float: right; |
This file contains 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
.css-selector { | |
background: linear-gradient(133deg, #232323, #c3c3c3); | |
background-size: 400% 400%; | |
-webkit-animation: AnimationName 59s ease infinite; | |
-moz-animation: AnimationName 59s ease infinite; | |
-o-animation: AnimationName 59s ease infinite; | |
animation: AnimationName 59s ease infinite; | |
} | |
@-webkit-keyframes AnimationName { | |
0%{background-position:0% 50%} |
This file contains 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
https://generatepress.com/forums/topic/using-flexbox-for-equal-height-blocks-columns/ | |
1. Select grid block | |
2. Give it css class flex-align | |
3. Add this css to make all the grid items in the grid a flex column: | |
.flex-align .gb-inside-container { | |
display: flex; | |
flex-direction: column; | |
height: 100%; | |
} |
This file contains 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
https://www.youtube.com/watch?v=b64gzAvAi1A&t=217s | |
html { | |
scroll-behavior: smooth; | |
scroll-padding-top: 3rem; | |
} |
This file contains 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
https://www.gmitropapas.com/generatepress-tips-and-tricks/generateblocks/fill-vertical-space-in-a-grid-container/?utm_source=mailpoet&utm_medium=email&utm_campaign=george-mitropapas-new-generatepress-knowledge-base-article |
This file contains 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 id="mc_embed_signup"><form id="mc-embedded-subscribe-form" class="validate" action="///indorse.us15.list-manage.com/subscribe/post?u=93f666ec18288ad384d11f649&id=7f298cf380" method="post" name="mc-embedded-subscribe-form" novalidate="" target="_blank"> | |
<div id="mc_embed_signup_scroll"> | |
<!-- Text Input Field --> | |
<div class="mc-field-group"> | |
<input id="mce-EMAIL" class="required email" name="EMAIL" type="email" placeholder="Your Email" /> <input id="mc-embedded-subscribe" class="button" style="font-family: roboto; " name="subscribe" type="submit" value="Subscribe" /> | |
</div> | |
<!-- /Submit Button --> |
This file contains 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
// Filter to change default search placeholder text | |
add_filter( 'generate_search_button', function() { | |
return ''; | |
} ); | |
// Remove placeholder text | |
add_filter( 'generate_search_placeholder', function() { | |
return null; | |
} ); |
NewerOlder