Skip to content

Instantly share code, notes, and snippets.

View DannyCare's full-sized avatar
🌍
Always on the move

Danny DannyCare

🌍
Always on the move
View GitHub Profile
@DannyCare
DannyCare / Revolution Slider ACF.php
Last active February 3, 2016 09:55
Display different Revolution Slider per page using Advanced Custom Fields
<?php
if(!empty(get_field('revolution_slider')))
{
putRevSlider( get_field('revolution_slider') );
}
else
{
}
?>
@DannyCare
DannyCare / css_resources.md
Last active August 29, 2015 14:23 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides