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
:root { | |
/* -- EDIT THE FOLLOWING VARIABLES TO ADUST GLOBAL ROW PADDING -- */ | |
--bb-x-large: 5%; | |
--bb-large: 5%; | |
--bb-medium: 3%; | |
--bb-small: 20px; | |
} | |
/* x-large row padding */ | |
@media(min-width:768px) { |
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
/* ## REMOVE MARGIN-BOTTOM FOR LAST CHILD ## */ | |
.fl-rich-text p:last-child{ | |
margin-bottom: 0 !important; | |
} | |
/*#######################################################*/ | |
/* ## SET MAXIMUN WIDTH FOR ROWS CONTENT ## */ | |
@media only screen and (max-width: 992px) { |
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
/* Add the class bb-shape to the Beaver Builder row and then add this css to wherever you put your css */ | |
.bb-shape .fl-row-content-wrap:after { | |
border-bottom: 1px solid #fff; | |
} |
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
<?php | |
/* | |
* Woocommerce Push UK & USA to the top of the country list | |
*/ | |
add_filter('woocommerce_sort_countries', '__return_false'); | |
add_filter( 'woocommerce_countries', 'change_country_order_in_checkout_form' ); | |
function change_country_order_in_checkout_form($countries) | |
{ | |
$uk = $countries['GB']; // Store the data for "UK key |
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
.wp-custom-logo .title-area { | |
max-width: 320px; | |
} | |
ul.menu-primary.genesis-nav-menu li { | |
margin-left: 0; | |
} | |
ul.menu-primary.genesis-nav-menu li { | |
border-radius: 5px; | |
} |
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
.fl-builder-module-template { | |
padding: 0; | |
} |
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 classToggle() { | |
this.classList.toggle('class1'); | |
this.classList.toggle('class2'); | |
} | |
document.querySelector('#div').addEventListener('click', classToggle); |
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
border-bottom: 1px solid #E7CA5B; | |
box-shadow: inset 0 -3px 0 #E7CA5B; |
NewerOlder