Skip to content

Instantly share code, notes, and snippets.

@studiopress
Last active January 14, 2017 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save studiopress/5635606 to your computer and use it in GitHub Desktop.
Save studiopress/5635606 to your computer and use it in GitHub Desktop.
Genesis color styles.
.theme-blue a,
.theme-blue a:visited {
color: #0d72c7;
}
<?php
//* Do NOT include the opening php tag
//* Create blue, green, orange and red color style options
add_theme_support( 'genesis-style-selector', array(
'theme-blue' => __( 'Blue', 'themename' ),
'theme-green' => __( 'Green', 'themename' ),
'theme-orange' => __( 'Orange', 'themename' ),
'theme-red' => __( 'Red', 'themename' )
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment