View Resultados de Busqueda
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
//* Customize search text | |
add_filter( 'genesis_search_title_text', 'search_title_text' ); | |
function search_title_text() { | |
return 'Resultados de búsqueda: '; | |
} |
View Colums Example
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
<div class="one-half first"><strong>Gmail for business</strong> | |
Custom made email addresses: (your_name@your_company.com).</div> | |
<div class="one-half"><strong>Google Docs</strong> | |
Share online documents, spreadsheets and presentations.</div> | |
<div class="one-half first"><strong>Google Calendar</strong> | |
Your meetings and company events in one place.</div> | |
<div class="one-half"><strong>Google Sites</strong> | |
Create your own intranet and wikis without programing.</div> |
View Javascript loading effect brunomertins.com
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 src="http://www.google.com/jsapi"></script> | |
<script> | |
google.load("jquery", "1"); | |
google.load("jqueryui", "1"); | |
</script> | |
<script> | |
$(document).ready(function() | |
{ | |
$('body').hide().fadeIn(500); | |
}); |
View GA Comments Event Tracking
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
<input name="submit" type="submit" onClick="_gaq.push(['_trackEvent', 'Forms', 'Submit', 'BlogComments']);" id="<?php echo esc_attr( $args['id_submit'] ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" /> |
View functions.php
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 | |
//* Do NOT include the opening php tag | |
//* Enqueue sticky menu script | |
add_action( 'wp_enqueue_scripts', 'custom_enqueue_script' ); | |
function custom_enqueue_script() { | |
wp_enqueue_script( 'sticky-menu', get_stylesheet_directory_uri() . '/js/sticky-menu.js', array( 'jquery' ), '', true ); | |
} | |
//* Reposition the secondary navigation menu |
View Spanish Acent Entity Codes
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
á --> á | |
é --> é | |
í --> í | |
ó --> ó | |
ú --> ú | |
ñ --> ñ |
View undoing-tables.html
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
<table> | |
<thead> | |
<tr> | |
<th scope="col">Name</th> | |
<th scope="col">Email</th> | |
<th scope="col">Dept, Title</th> | |
<th scope="col">Phone</th> | |
</tr> | |
</thead> | |
<tbody> |
View EventsMicrodataExample
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
<div itemscope itemtype="http://schema.org/Event"> | |
<a itemprop="url" href="http://www.turansa.com/blog/2011/09/21/excursion-maravillas-dubai-y-la-india-2012/"> | |
Excursión: <span itemprop="name">Dubai y la India 2012</span></a> | |
<meta itemprop="startDate" content="2012-03-27T17:30">Thu, 03/27/12 5:30 p.m.</div> |
View SEOCheatsheet
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
<h2>SEO Cheatsheet<h2> | |
<ul> | |
<li>Optimized, Relevant Content</li> | |
<li>Good Semantic Page Markup (H1, H2, etc.)</li> | |
<li>Good Linking Structure</li> | |
<li>Keyword-Rich URL Structure</li> | |
<li>Optimized Assets (File Names)</li> | |
<li>Optimized Content (Title, Meta, Alt, etc.)</li> | |
<li>Fast Loading XML/HTML - based pages</li> | |
<li>Sitemap Files and Robot.txt files</li> |
NewerOlder