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 this to the CSS tab of the Code Block ABOVE the Repeater: | |
| */ | |
| .thumbnail img { | |
| box-sizing: border-box; | |
| border: 1px solid #ddd; | |
| padding: 2px; | |
| margin: 0 1% 15px 0; | |
| width: 32.6667%; |
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 | |
| // Set your post type | |
| $my_post_type = 'post'; | |
| if( function_exists('oxygen_vsb_register_condition') ) { | |
| global $oxy_condition_operators; | |
| oxygen_vsb_register_condition('Contains Posts', array('options'=>array('true', 'false'), 'custom'=>false), array('=='), 'search_has_results_callback', 'Query Has Posts'); |
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
| .category-post-container { | |
| display: flex; | |
| flex-direction: row; | |
| flex-wrap: wrap; | |
| } | |
| .category-post { | |
| width: 33.33%; | |
| } |
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
| .taxonomy-container { | |
| width: 100%; | |
| flex-direction: row; | |
| display: flex; | |
| flex-wrap: wrap; | |
| } | |
| .taxonomy-div { | |
| width: 33.33%; | |
| display: flex; |
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
| /* tabbed list */ | |
| ul.tabs_login { | |
| padding: 0; margin: 20px 0 0 0; | |
| position: relative; | |
| list-style: none; | |
| font-size: 14px; | |
| z-index: 1000; | |
| float: left; | |
| } | |
| ul.tabs_login li { |
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 this to a stylesheet via Manage > Stylesheets in the top right of the builder */ | |
| .wp-embed-responsive .cssAnimate { | |
| opacity: 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
| Post: 13135 | |
| <?php | |
| wp_enqueue_style('splide-css'); | |
| wp_enqueue_script('splide'); | |
| ?> | |
| <?php | |
| //echo "hello world!"; |
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
| a:2:{s:12:"Font Awesome";s:591781:"<?xml version="1.0"?> | |
| <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1"> | |
| <defs> | |
| <symbol id="FontAwesomeicon-glass" viewBox="0 0 32 32"> | |
| <title>glass</title> | |
| <path class="path1" d="M30.339 3.321q0 0.625-0.768 1.393l-11.286 11.286v13.714h5.714q0.464 0 0.804 0.339t0.339 0.804-0.339 0.804-0.804 0.339h-16q-0.464 0-0.804-0.339t-0.339-0.804 0.339-0.804 0.804-0.339h5.714v-13.714l-11.286-11.286q-0.768-0.768-0.768-1.393 0-0.411 0.321-0.652t0.679-0.313 0.768-0.071h25.143q0.411 0 0.768 0.071t0.679 0.313 0.321 0.652z"/> | |
| </symbol> | |
| <symbol id="FontAwesomeicon-music" viewBox="0 0 27 32"> | |
| <title>music</title> | |
| <path class="path1" d="M27.429 4v20q0 0.893-0.607 1.589t-1.536 1.080-1.848 0.571-1.723 0.188-1.723-0.188-1.848-0.571-1.536-1.080-0.607-1.589 0.607-1.589 1.536-1.080 1.848-0.571 1.723-0.188q1.875 0 3.429 0.696v-9.589l-13.714 4.232v12.661q0 0.893-0.607 1.589t-1.536 1.080-1.848 |
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
| .flipbox { | |
| position: relative; | |
| } | |
| .flipbox__front, | |
| .flipbox__back { | |
| transition: 0.7s all ease-in-out; | |
| backface-visibility: hidden; | |
| } |
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
| document.addEventListener("DOMContentLoaded", function() { | |
| tippy('[data-tippy-content]', { | |
| animation: 'shift-away', | |
| }); | |
| }) |