We want to go from this:
... to that:
| .appearance-right-previw .d-flexCstm .form-switchCstm input { | |
| -webkit-appearance: none; | |
| -moz-appearance: none; | |
| appearance: none; | |
| -webkit-print-color-adjust: exact; | |
| } | |
| @media (max-width:767px){ | |
| .appearance-right-previw .tooltipCstm .toolltiptextCstm { | |
| width: 100% !important; |
| /** | |
| * Changes the class on the custom logo in the header.php | |
| */ | |
| function helpwp_custom_logo_output( $html ) { | |
| $html = str_replace('custom-logo-link', 'navbar-brand', $html ); | |
| return $html; | |
| } | |
| add_filter('get_custom_logo', 'helpwp_custom_logo_output', 10); |
| <?php | |
| function philosophy_button( $attributes ) { | |
| $default = array( | |
| 'type'=>'primary', | |
| 'title'=>__("Button",'philosophy'), | |
| 'url'=>'', | |
| ); | |
| $button_attributes = shortcode_atts($default,$attributes); |
| //// ISOTOPE TRIGGER | |
| var $grid = $('.work-content').isotope({ | |
| itemSelector: '.work-item', | |
| stagger: 30 | |
| }); | |
| $(window).on('load', function(){ $grid.isotope('layout') }); | |
| $('.filter-work').on( 'click', '.button', function() { | |
| var filterValue = $(this).attr('data-filter'); | |
| $grid.isotope({ filter: filterValue }); | |
| }); |
| download twentytwenty plugin for before after | |
| https://github.com/zurb/twentytwenty |
| <!--front end html loop--> | |
| <ul class="social"> | |
| <?php | |
| $entries = get_post_meta( get_the_ID(), '_yourprefix_main_boxes', true ); | |
| foreach ( (array) $entries as $key => $entry ) { | |
| $icon_name = $link_irr = ''; | |
| if ( isset( $entry['_yourprefix_font_icon'] ) ) { |
| @media screen and (-webkit-min-device-pixel-ratio:0) { | |
| /* Safari and Chrome */ | |
| .flex-direction-nav-featured a{ | |
| margin-top: 4%; | |
| } | |
| /* Safari only override */ | |
| ::i-block-chrome,.flex-direction-nav-featured a{ | |
| margin-top: 5%; | |
| } |
| //[Master Javascript] | |
| //Project: Delicious Restaurant - Onepage Html Responsive Template | |
| //Version: 1.1 | |
| //Last change: 18/10/2016 [fixed bug] | |
| //Primary use: Delicious Restaurant - Onepage Html Responsive Template | |
| //theme script here |
| @font-face { | |
| font-family: 'Poppins'; | |
| font-style: normal; | |
| font-weight: 300; | |
| src: url('../fonts/poppins-v1-latin-300.eot'); /* IE9 Compat Modes */ | |
| src: local('Poppins Light'), local('Poppins-Light'), | |
| url('../fonts/poppins-v1-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ | |
| url('../fonts/poppins-v1-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ | |
| url('../fonts/poppins-v1-latin-300.woff') format('woff'), /* Modern Browsers */ | |
| url('../fonts/Poppins-Light.ttf') format('truetype'), /* Safari, Android, iOS */ |