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
/** | |
* Custom Elementor Accordion with 2 Columns and Box Shadow | |
**/ | |
.wpac-accordion .e-n-accordion { | |
display: grid; | |
grid-template-columns: repeat(2, 1fr); | |
gap: 15px; | |
align-items: start; | |
} | |
.wpac-accordion .e-n-accordion-item { |
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 class="animatede-circle"> | |
<div class="outer-ring"> | |
<img src="outer-circle.svg" alt="Outer Ring"> | |
</div> | |
<div class="icons"> | |
<img src="icons.png" alt="Icons"> | |
</div> | |
<div class="inner-ring"> | |
<img src="inner-circle.svg" alt="Inner Ring"> | |
</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
/** | |
* CSS Code for Animated Reviews Slider | |
* Chatbot Landing Page Design Tutorial | |
* Author: Mian Shahzad Raza | |
**/ | |
.animated-reviews { | |
text-align: center; | |
position: relative; | |
z-index: 1; | |
background-color: #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
.gradient-border .elementor-button:before { | |
content: ""; | |
position: absolute; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
z-index: -1; | |
/* Increase negative value for border width */ | |
margin: -1px -2px; |
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 | |
// Add this to your theme's functions.php file or a custom plugin | |
function directorist_count_posts_in_taxonomy_shortcode($atts) { | |
$atts = shortcode_atts( | |
array( | |
'taxonomy' => 'at_biz_dir-category', // Taxonomy name (e.g., 'category', 'post_tag') | |
'term' => '', // Term slug | |
), | |
$atts | |
); |
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
.home-search .directorist-search-contents, .home-search .directorist-container-fluid { | |
padding: 0; | |
} | |
.home-search .directorist-search-form__box { | |
flex-direction: column; | |
gap: 20px; | |
} | |
.home-search .directorist-search-form-top, .home-search .directorist-search-form-action { | |
width: 100%; | |
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
selector { | |
aspect-ratio: 1200 / 600; | |
background-color: tomato; | |
mask-image: url("/* SVG URL */"); | |
-webkit-mask-image: url("/* SVG URL also here */"); | |
mask-repeat: no-repeat; | |
-webkit-mask-repeat: no-repeat; | |
mask-size: 100% auto; | |
-webkit-mask-size: 100% auto; | |
/* mask-size: contain; */ |
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
/** | |
* This is a jQuery code snippet | |
*/ | |
jQuery(document).ready(function($) { | |
$("a.glink span").first().html(""); | |
}); |
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
h1 { | |
background: linear-gradient( | |
to right, | |
#CC98FF 20%, | |
#00affa 30%, | |
#0190cd 70%, | |
#FC96FF 80% | |
); | |
-webkit-background-clip: text; | |
background-clip: text; |
NewerOlder