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
UPDATE at_posts SET post_content = REPLACE(post_content, ' style="text-align: center;"', ''); | |
UPDATE at_posts SET post_content = REPLACE(post_content, ' style="text-align: left;"', ''); | |
UPDATE at_posts SET post_content = REPLACE(post_content, 'aligncenter', ''); | |
UPDATE at_posts SET post_content = REPLACE(post_content, 'aligncenter ', ''); | |
UPDATE at_posts SET post_content = REPLACE(post_content, '<img class=" ', '<img class="'); | |
UPDATE at_posts SET post_content = REPLACE(post_content, '<strong>', ''); | |
UPDATE at_posts SET post_content = REPLACE(post_content, '</strong>', ''); | |
UPDATE at_posts SET post_content = REPLACE(post_content, '<font>', ''); | |
UPDATE at_posts SET post_content = REPLACE(post_content, '</font>', ''); | |
UPDATE at_posts SET post_content = REPLACE(post_content, '<b>', ''); |
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
//Fade in content after Typekit loads. | |
odc.fadeContent = function(){ | |
//Content you want to animate in, hide on load. | |
$("div.inner").hide(); | |
var htmlInterval = window.setInterval(function() { | |
var htmlClass = $('html').attr('class'); | |
if(htmlClass.indexOf('wf-active') >= 0) { | |
//Content you want faded in. | |
$("div.inner").fadeIn(1500, function(){ |
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
concentrated.modals = function(btn,modal){ | |
var $btn = $(btn); | |
var $modal = $(modal); | |
var $overlay = $('#overlay'); | |
var $close = $('a.close', $modal); | |
// set overlay height | |
var docHeight = $(document).height(); | |
$overlay.css({ height : docHeight }); |
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
odc.fadeContent = function(){ | |
//Content you want to animate in, hide on load. | |
$("div.inner").hide(); | |
var htmlInterval = window.setInterval(function() { | |
var htmlClass = $('html').attr('class'); | |
if(htmlClass.indexOf('wf-active') >= 0) { | |
//Content you want faded in. | |
$("div.inner").fadeIn(1500, function(){ | |
//Clear interval after animation completes. |
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
dl.expand{ | |
float: left; display: inline; | |
width: 315px; | |
margin: 0 20px 14px 0; | |
&:nth-child(even){ margin-right: 0; } | |
dt{ | |
border-bottom: 1px solid #fff; | |
position: relative; | |
cursor: pointer; | |
h3{ margin: 0; border-bottom: 1px solid #cecece; } |
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
html { | |
background: url(images/myBackground.jpg) no-repeat center center fixed; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
} | |
/* FOR IE |
NewerOlder