Skip to content

Instantly share code, notes, and snippets.

@neilgee
neilgee / allie.html
Last active August 29, 2015 13:55
All IE Child Theme
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/all-ie.css" />
<![endif]-->
@neilgee
neilgee / allie.html
Last active August 29, 2015 13:55
All IE Parent Theme
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/css/all-ie.css" />
<![endif]-->
@neilgee
neilgee / ie8.html
Last active August 29, 2015 13:55
IE 8 WordPress Child
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-8.css" />
<![endif]-->
@neilgee
neilgee / ie8andlower.html
Last active August 29, 2015 13:55
IE 8 and Lower
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-8andlower.css" />
<![endif]-->
@neilgee
neilgee / ie7lower.html
Last active August 29, 2015 13:55
IE 7 and lower
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-7andlower.css" />
<![endif]-->
@neilgee
neilgee / ie9higher.html
Last active August 29, 2015 13:55
IE 9 and Higher
<!--[if gte IE 9]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-9andhigher.css" />
<![endif]-->
@neilgee
neilgee / ie9.html
Last active August 29, 2015 13:55
IE 9 and Higher
<!--[if gt IE 8]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-9andhigher.css" />
<![endif]-->
@neilgee
neilgee / Zurb Ink Newsletter HTML Mark up - wrapping container in full width
Created February 15, 2014 23:10
Zurb Ink Newsletter HTML MarkUp - wrapping a Containing Table in a Full Width Fluid Row
<body style="background:#b9e5ff;">
<table class="body" style="background:#b9e5ff;">
<tr>
<td class="center" align="center" valign="top">
<center>
<!-- Email Content starts-->
<table class="row header" bgcolor="#205D7A" style="background:#205D7A;"><!--full width row wrapper-->
<tr>
<td class="center" align="center">
<center>
@neilgee
neilgee / Zurb Ink Container Only Code
Created February 15, 2014 23:15
Zurb Ink Container Only (12 column) Mark Up
<table class="container"><!--start of container-->
<tr>
<td>
<table class="row">
<tr>
<td class="wrapper last">
<table class="twelve columns">
<tr>
<td>
content in here
/* Responsive Navigation
---------------------------------------------------------------------------------------------------- */
/* Standard Navigation
--------------------------------------------- */
nav {
clear: both;
}