This file contains 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 | |
// Shorten the Wordpress Title | |
// how to shorten the title in wordpress | |
echo substr(the_title('', '', FALSE), 0, 40); | |
// check here for more info: http://wordpress.org/support/topic/how-to-limit-character-on-title | |
// This is how i shorten the title and make sure to append '...' on the end of it: |
This file contains 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
// http://stackoverflow.com/questions/1313373/jquery-same-click-event-for-multiple-elements | |
$('.class1, .class2').click(some_function); | |
$('.class1').add('.class2').click(some_function); |
This file contains 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: Page Template Name | |
*/ | |
?> |
This file contains 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
/* the following CSS, particularly the span stuff creates the accordian arrow effect */ | |
/* can use the same arrow image and just css3 rotate it */ | |
.st-accordion ul li > a{ | |
font-family: 'Josefin Slab',Georgia, serif; | |
text-shadow: 1px 1px 1px #fff; | |
font-size: 46px; | |
display: block; | |
position: relative; |
This file contains 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"> | |
var _gaq = _gaq || []; | |
_gaq.push(['_setAccount', 'UA-11253259-1']); | |
_gaq.push(['_trackPageview']); | |
(function() { | |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
This file contains 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 IE]> | |
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/css/ie.css" /> | |
<![endif]--> |
This file contains 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
/*Here's the html for the logo | |
<div class="header"> | |
<h1 class="logo" ><a href="" >Magazine</a></h1> | |
</div> | |
Here's the CSS for the Logo*/ | |
.header h1.logo { margin: 7px 0 0 0; float: left; } | |
This file contains 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
Redirect 301 /services/probate http://www.drizinlaw.com/services/las-vegas-probate-attorney |
This file contains 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
/* Cool Text Shadow Effect stolen from Codrops: http://tympanus.net/codrops/ */ | |
.ct-featured h2 { | |
color: #282828; | |
text-shadow: 1px 1px 0px #f2f2f2, 1px 2px 0px #b1b1b2; | |
text-decoration: none; | |
} |