This file contains hidden or 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 when the mouse moves on to the image */ | |
.brands img:hover { | |
-webkit-transform: scale(.65) translateY(-4px); | |
-ms-transform: scale(.65) translateY(-4px); | |
transition: all .4s ease-in-out; | |
transform: scale(1.2) translateY(-4px); | |
} | |
/* For when the mouse moves off the image */ | |
.brands img { |
This file contains hidden or 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
video::-internal-media-controls-download-button { | |
display:none; | |
} | |
video::-webkit-media-controls-enclosure { | |
overflow:hidden; | |
} | |
video::-webkit-media-controls-panel { | |
width: calc(100% + 30px); /* Adjust if necessary */ | |
} |
This file contains hidden or 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 | |
/* | |
Plugin Name: Simple Divi Shortcoder | |
Plugin URI: https://divinotes.com/how-to-build-a-simple-plugin-to-easily-embed-divi-section-module-within-another/ | |
Description: The purpose of this plugin is to allow you to embed Divi sections or modules within other Divi modules or anything else that supports shortcodes. | |
Version: 1.0 | |
Author: Your Name | |
Author URI: https://divinotes.com | |
License: GPL2 |
This file contains hidden or 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
animation-name: none; |
This file contains hidden or 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
/* Place the word MENU after the mobile hamburger */ | |
.mobile_menu_bar:after { | |
content: 'MENU'; | |
position: relative !important; | |
bottom: 10px; | |
left: 10%; | |
color: #c4c4c4; | |
} | |
/* Change the hamburger to X when opened */ |
This file contains hidden or 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
display: -webkit-box; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-box-align: center; | |
-ms-flex-align: center; | |
align-items: center; | |
-webkit-box-orient: horizontal; | |
-webkit-box-direction: normal; | |
-ms-flex-direction: row; | |
flex-direction: row; |
This file contains hidden or 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
.et_pb_pricing_table:hover { | |
transform: scale(1.1); | |
-ms-transform: scale(1.1); /* IE 9 */ | |
-webkit-transform: scale(1.1); /* Chrome, Safari, Opera */ | |
z-index: 99; | |
transition-duration: 3s; /* Specifies how many seconds or milliseconds a transition effect takes to complete. */ | |
-webkit-transition-duration: 5s; /* Safari */ | |
} |
This file contains hidden or 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
/* Switch Divi Logo on Mobile Devices */ | |
@media only screen and (max-width: 981px) { | |
#logo { | |
content: url(“http://mydomainname.com/wp-content/.../MyMobileLogo.png”); | |
max-height: 160px; | |
height: auto; /* default value - the browser calculates the height */ | |
} | |
} | |
/* Restrict the width of the logo if necessary */ |