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
/* Grid Extended 1 */ | |
@media screen and (min-width: 981px) { | |
.ge1 .et_pb_post_extra.el_dbe_grid_extended .post-content { | |
order: 0; | |
width: 66% !important; | |
} | |
.ge1 .et_pb_post_extra.el_dbe_grid_extended .post-media { | |
width: 34% !important; |
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
/* Divi Vertical Tabs 1 */ | |
.vertical-tabs1 { | |
border: none; | |
} | |
.vertical-tabs1 ul.et_pb_tabs_controls { | |
float: left; | |
width: 30%; | |
margin-right: 3%; |
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 | |
protected function _enqueue_bundles() { | |
// Frontend Bundle | |
$site_url = wp_parse_url( get_site_url() ); | |
$hot_bundle_url = "http://localhost:3000/static/js/frontend-bundle.js"; | |
wp_enqueue_script( "{$this->name}-frontend-bundle", $hot_bundle_url, $this->_bundle_dependencies['frontend'], $this->version, true ); | |
if ( et_core_is_fb_enabled() ) { | |
// Builder Bundle | |
$hot_bundle_url = "http://localhost:3000/static/js/builder-bundle.js"; | |
wp_enqueue_script( "{$this->name}-builder-bundle", $hot_bundle_url, $this->_bundle_dependencies['builder'], $this->version, true ); |
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
UPDATE wp_options SET option_value = REPLACE (option_value, 'http://www.YOUR-OLD-DOMAIN.com', 'http://www.YOUR-NEW-DOMAIN.com') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = REPLACE (guid, 'http://www.YOUR-OLD-DOMAIN.com','http://www.YOUR-NEW-DOMAIN.com'); | |
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://www.YOUR-OLD-DOMAIN.com','http://www.YOUR-NEW-DOMAIN.com'); |
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
UPDATE wp_options SET option_value = replace(option_value, 'oldurl.com', 'newurl.com') WHERE option_name = 'home' OR option_name = 'siteurl';UPDATE wp_posts SET guid = replace(guid, 'oldurl.com','newurl.com');UPDATE wp_posts SET post_content = replace(post_content, 'oldurl.com', 'newurl.com'); | |
UPDATE wp_postmeta SET meta_value = replace(meta_value,'oldurl.com','newurl.com'); |
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
.el-drm-menu-item-price { | |
display: flex; | |
flex-direction: row-reverse; | |
} |
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
.modal-example-1 .el-icon span.dipl_modal_trigger_element.dipl_modal_trigger_icon.et-pb-icon:before { | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
z-index: -1; | |
background: #eeeeee; | |
border-radius: 50%; | |
opacity: 1; |