Skip to content

Instantly share code, notes, and snippets.

@sassinack
sassinack / style.css
Created December 27, 2012 15:09
CSS: Fixed Chat Tab
#fixed-chat {
position: fixed;
right: 0;
bottom: 45%;
display: block;
width: 70px;
height: 50px;
overflow: hidden;
z-index: 999;
}
@sassinack
sassinack / functions.php
Created December 27, 2012 15:08
Genesis: PHP: custom styles tinymce editor
// Custom Styles
add_filter( 'tiny_mce_before_init', 'my_custom_tinymce' );
function my_custom_tinymce( $init ) {
$init['theme_advanced_buttons2_add_before'] = 'styleselect';
$init['theme_advanced_styles'] = 'Red=red,Content Light CTA =lightCTA,Content Dark CTA=darkCTA';
return $init;
}
@sassinack
sassinack / functions.php
Created December 27, 2012 15:08
Genesis: PHP: create widget areas
//add php functionality in text widget
add_filter('widget_text', 'php_text', 99);
function php_text($text) {
if (strpos($text, '<' . '?') !== false) {
ob_start();
eval('?' . '>' . $text);
$text = ob_get_contents();
ob_end_clean();
}
@sassinack
sassinack / functions.php
Created December 27, 2012 00:52
Genesis: Add structural wraps for full width
/** Add Structural wraps for full width */
add_theme_support( 'genesis-structural-wraps', array( 'header', 'nav', 'subnav', 'inner', 'footer-widgets', 'footer' ) );