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
| // 1. Add this code in your functions.php file | |
| add_shortcode('wpbsearch', 'get_search_form'); | |
| // 2. Call the shortcode wherever you want like this: | |
| [wpbsearch] |
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
| #blocksy_ct_contact_info-18 ul li:last-child > span > svg { | |
| display: none; | |
| } | |
| #blocksy_ct_contact_info-18 ul li:last-child > span { | |
| background-image: url('http://blocksy.local/wp-content/uploads/2020/03/daniel-lincoln-dp75uo9Qflo-unsplash-4-150x150.jpg'); | |
| background-size: 18px 18px; | |
| background-repeat: no-repeat; | |
| background-position: center center; | |
| } |
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
| .ct-image-container img, | |
| .ct-image-container picture { | |
| object-fit: contain; | |
| } |
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: 999px) { | |
| .product[class*="top-gallery"] .entry-summary { | |
| display: flex; | |
| flex-direction: column-reverse; | |
| } | |
| .product[class*="top-gallery"] .entry-summary section:last-child { | |
| border-top: none; | |
| border-bottom: 1px solid var(--border-color); | |
| } |
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: 1000px) { | |
| .ct-footer [data-row="middle"] > div { | |
| --grid-template-colummns: 0.5fr 3fr 0.5fr !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
| .archive.woocommerce .site-main { | |
| --container-max-width: 1400px; | |
| } |
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
| // first method | |
| .my-selector p { | |
| margin-bottom: 0; | |
| } | |
| // second method | |
| .my-selector p { | |
| --contentSpacing: 0; | |
| } |
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
| .wp-block-embed__wrapper:before { | |
| content: ''; | |
| display: block; | |
| padding-top: var(--aspect-ratio, 50%); | |
| } | |
| .wp-block-embed__wrapper iframe, | |
| .wp-block-embed__wrapper .container-lazyload, | |
| .wp-block-embed__wrapper > .jetpack-video-wrapper { | |
| position: absolute; |
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
| <span class="custom-word">Hello</span> World | |
| / * CSS styles */ | |
| .custom-word { | |
| margin-right: 5px; | |
| font-weight: 900; | |
| color: red; | |
| } |