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; |
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 styles for Ultimate Member plugin used in the Login/Signup page design tutorial. | |
*/ | |
.wpac-login-form .um-form { | |
text-align: center; | |
} | |
.wpac-login-form .um-login { | |
margin-bottom: 0 !important; | |
} | |
.wpac-login-form .um-misc-with-img { |
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
/* | |
* Loop Item | |
*/ | |
.member-info { | |
visibility: hidden; | |
} | |
selector { | |
transition: .6s all; | |
} | |
selector:hover .member-info { |
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 .elementor-swiper-button-prev { | |
top: -10px; | |
right: 60px; | |
left: auto; | |
} | |
selector .elementor-swiper-button-next { | |
top: -10px; | |
right:0px; | |
left: auto; | |
} |
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
/*********************************** | |
* For: SaaS Website Design Tutorial | |
* By: WPAcademy.PK | |
* Info: Please use appropirate class names into the sections or widget. | |
You can change the names, just make sure you are uaing correct class name | |
in the section or widget after changing the names. | |
**********************************/ | |
.elementor-text-editor p { | |
margin-bottom: 0 !important; | |
} |
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 wpac_add_query_vars_filter( $vars ){ | |
$vars[] = "order_id"; | |
return $vars; | |
} | |
add_filter( 'query_vars', 'wpac_add_query_vars_filter' ); | |
function wpac_order_status() { | |
if(is_page(1141)){ | |
$id = get_query_var('order_id'); | |
$id = intval($id); |
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
/* | |
* Description: JavaScript code for advanced ecommerce website tutorial by WP Academy. | |
* Author: WP Academy | |
* Author URL: https://wpacademy.pk | |
* Usage Info: | |
Use appropirate jQuery code inside an HTML widget (Elementor) in appropirate sections/templates. | |
Don't forget to wrap your code inside '<script>YOUR CODE</script>' tags. | |
*/ | |
// Desktop Header Mega Menu Toggle. |
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
/****************************** | |
* Description: CSS code for advanced ecommerce website tutorial by WP Academy. | |
* Author: WP Academy | |
* Author URL: https://wpacademy.pk | |
* Usage Info: | |
Please use apporopirate class names in sections or widgets as explained in the video tutorail. | |
Don't forget to replace color variable names such as '--e-global-color-primary' with your own colors | |
or global color names. | |
******************************/ |
NewerOlder