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
| sudo add-apt-repository ppa:webupd8team/sublime-text-3 | |
| sudo apt-get update | |
| sudo apt-get install sublime-text-installer | |
| sudo apt-get install software-properties-common | |
| sudo apt-add-repository ppa:brightbox/ruby-ng | |
| sudo apt-get update | |
| sudo apt-get install ruby2.2 ruby2.2-dev | |
| sudo apt-get install ruby-switch | |
| sudo apt-get install bundler |
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
| <script> | |
| $.load_ajax_template('_images', | |
| {'sku': '[@sku@]'}, | |
| {'onLoad':function(){ | |
| $('.carousel-example').carousel("pause"); | |
| } | |
| }); | |
| </script> |
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
| #homepageCarousel .carousel-inner .item { | |
| left: 0 !important; | |
| -webkit-transition: opacity 0.9s; | |
| transition: opacity 0.9s; | |
| } | |
| #homepageCarousel .carousel-inner .next.left, | |
| #homepageCarousel .carousel-inner .prev.right { | |
| opacity: 1; | |
| z-index: 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
| $('.carousel').carousel({ | |
| interval: 2000 | |
| }) |
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
| sidebar element | |
| <i class="fa fa-angle-down"></i> | |
| style.css | |
| <style> | |
| #left-sidebar i.fa-angle-down, #left-sidebar .fa-angle-up { | |
| font-size: 21px; | |
| line-height: 1.5em; | |
| cursor: pointer; | |
| } |
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
| <div class="col-xs-12"> | |
| <hr> | |
| <h1>Digital Downloads Available On Your Account</h1> | |
| <div id="ebook-list"> | |
| <div class="row"> | |
| [%site_value id:'footer_javascript'%] | |
| [%thumb_list type:'orders' %] | |
| [%param *header%] | |
| [%/param%] | |
| [%param *body%] |
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: | |
| <link rel="stylesheet" type="text/css" href="[%ntheme_asset%]plugins/slick-1.5.9/slick/slick.css[%end ntheme_asset%]"/> | |
| <link rel="stylesheet" type="text/css" href="[%ntheme_asset%]plugins/slick-1.5.9/slick/slick-theme.css[%end ntheme_asset%]"/> | |
| footer (or in site value): | |
| <script type="text/javascript" src="[%ntheme_asset%]plugins/slick-1.5.9/slick/slick.min.js[%end ntheme_asset%]"/></script> | |
| target area | |
| <script> | |
| $('.responsive').slick({ |
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
| *,:before,:after { | |
| -moz-box-sizing:border-box; | |
| -webkit-box-sizing:border-box; | |
| box-sizing:border-box; | |
| -webkit-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
| -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC); |
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
| <script type="text/javascript" language="javascript"> | |
| $('.component-qty-input').keyup(function(){ | |
| if ($('.component-qty-input').attr('min')> $(this).val() ){ | |
| $(this).val($(this).attr('min')); | |
| } | |
| if ($('.component-qty-input').attr('max') < $(this).val() ){ | |
| $(this).val($(this).attr('max')); | |
| } | |
| }); | |
| </script> |