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
@media (max-width: 600px) { | |
.archive.search .wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid { | |
grid-template-columns: 50% 50%; | |
grid-gap: 10px; | |
} | |
} |
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
@media (min-width: 1025px) { | |
.site-header.header-v8 .site-branding { | |
background-color: #000; | |
} | |
} |
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
@media (max-width:768px) { | |
header#masthead .navbar-sticky { | |
background-color: #131022; | |
} | |
} |
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
header .masthead form.navbar-search.col { | |
display: 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
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor { | |
gap: 0; | |
font-size: 14px; | |
} |
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
add_filter('use_block_editor_for_post_type', 'enable_gutenberg_for_products', 10, 2); | |
function enable_gutenberg_for_products($use_block_editor, $post_type) { | |
if ($post_type === 'product') { | |
return 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
.post-type-archive-video .content-area { | |
display: flex; | |
flex-direction: column; | |
} | |
.videos__jumbotron--top { | |
order: 1; | |
} |
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
function pizzaro_footer_about_info() { | |
$about_info = apply_filters( | |
'pizzaro_footer_about_info_args', | |
array( | |
'img_src' => '//placehold.it/435x330', | |
'title' => esc_html__( 'About us', 'pizzaro' ), | |
'description' => esc_html__( 'Proin ac semper mi. Phasellus magna elit, dapibus at egestas a, facilisis nec ligula. In vitae ex ante. Aliquam interdum maximus dui quis sodales. Cras vel mi diam. Phasellus mi ante, iaculis nec tempus ac, tincidunt sit amet eros. Fusce malesuada elit massa, ac eleifend massa ligula, semper sed faucibus vitae, fermentum sed ex.', 'pizzaro' ), | |
'button_text' => esc_html__( 'Read More →', 'pizzaro' ), | |
'button_link' => '#', | |
) |
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
add_action( 'pizzaro_before_footer_v1', 'pizzaro_footer_about_info', 105 ); |
NewerOlder