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
| <ul class="imglist"> | |
| <li><a href="#"><img src="/path/to/your/image.jpg"></a></li> | |
| <li><a href="#"><img src="/path/to/your/image.jpg"></a></li> | |
| <li><a href="#"><img src="/path/to/your/image.jpg"></a></li> | |
| </ul> |
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
| var BrowserDetect = { | |
| init: function() { | |
| this.browser = this.searchString(this.dataBrowser) || "An unknown browser"; | |
| this.version = this.searchVersion(navigator.userAgent) || this.searchVersion(navigator.appVersion) || "an unknown version"; | |
| this.OS = this.searchString(this.dataOS) || "an unknown OS"; | |
| }, | |
| searchString: function(data) { | |
| for (var i = 0; i < data.length; i++) { | |
| var dataString = data[i].string; | |
| var dataProp = data[i].prop; |
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
| if (jQuery.browser.safari) { | |
| var width = $(window) | |
| .width(); | |
| if (width < 671) { | |
| $('.people_image') | |
| .css('width', '32.5%'); | |
| } else if (width >= 1000) { | |
| $('.people_image') | |
| .css('width', '15.3%'); | |
| } else if (width > 671 && width <= 999) { |
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
| .center { | |
| width: 300px; | |
| height: 300px; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| margin-left: -150px; | |
| margin-top: -150px; | |
| } |
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
| img { | |
| -moz-transform: scaleX(-1); | |
| -o-transform: scaleX(-1); | |
| -webkit-transform: scaleX(-1); | |
| transform: scaleX(-1); | |
| filter: FlipH; | |
| -ms-filter: "FlipH"; | |
| } |
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 isSafari() { | |
| if (BrowserDetect.browser === 'Safari' && BrowserDetect.version < 6){ //detects safari versions less than 6 | |
| // JS goes here | |
| if(window.devicePixelRatio){ | |
| } |
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 init() { | |
| $('#general').on('submit', function(e) { | |
| pass = true; | |
| $('input, textarea', this).removeClass('error'); | |
| $('input, textarea', this).each(function() { | |
| if ($(this).val() === '') { | |
| $(this).addClass('error'); | |
| pass = false; | |
| } |
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 \0screen {img { width: auto }} |
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 | |
| /** | |
| * Template Name: Sitemap | |
| */ | |
| ?> | |
| <h2 id="authors">Authors</h2> | |
| <ul> | |
| <?php | |
| wp_list_authors( |
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
| /* iPads 1 & 2 (portrait and landscape) ----------- */ | |
| @media only screen | |
| and (min-device-width : 768px) | |
| and (max-device-width : 1024px) { | |
| /* css goes here */ | |
| } | |
| /* iPads 1 & 2 (landscape) ----------- */ | |
| @media only screen | |
| and (min-device-width : 768px) |
NewerOlder