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
/* WOO PRODUCT TABS STYLING */ | |
.woocommerce div.product .woocommerce-tabs .panel { | |
padding: 0 32px 32px; | |
} | |
.woocommerce div.product form.cart .variations { | |
padding: 20px 30px; | |
} | |
.woocommerce div.product .woocommerce-tabs ul.tabs li a { | |
padding: 10px; |
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
.woocommerce ul.products li.product h2 { | |
line-height: 2.5ex; | |
height: 7.5ex; | |
overflow: hidden; | |
} | |
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
.elementor-widget-price-table, .elementor-widget-price-table>div, .elementor-price-table { | |
height: 100%; | |
} | |
.elementor-price-table { | |
display: -webkit-box; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-box-orient: vertical; | |
-webkit-box-direction: normal; |
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
/* Create a 2 column section with background image in seccond colum */ | |
/* 1 - add Section Class of: flex-col-two */ | |
/* 2 - Add the following markup to the section in the Text editor */ | |
<div class="col-one"> | |
Some content | |
</div> | |
<div class="col-two"> | |
some content | |
</div> |
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
/* WordPress Custom Search Field */ | |
/* Use Custom HTML Widget */ | |
/* Add site-url to action attribute */ | |
<form method="get" class="custom-search-form" action="site-url"> | |
<label> | |
<span class="screen-reader-text">Search for:</span> | |
<input type="search" class="search-field" value="" name="s" title="Search for:"> | |
<span class="label">Search</span> |
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
/* Ken Burns effect for WP Show Posts Pro */ | |
/* Add ken-burns class to container */ | |
@keyframes kenburns { | |
0% { | |
opacity: 0; | |
} | |
5% { | |
opacity: 1; |