Community Forums › Forums › Archived Forums › General Discussion › Love Executive; don't like the theme colors
This topic is: not resolved
Tagged: executive pro
- This topic has 4 replies, 2 voices, and was last updated 10 years ago by
toddlohenry.
Viewing 5 posts - 1 through 5 (of 5 total)
-
AuthorPosts
-
July 2, 2015 at 1:48 pm #158211
toddlohenry
MemberHow can I create my own theme color packages or at the very least be able to edit all the color hex values in one place instead of having to hunt them down?
http://toddlohenry.comJuly 2, 2015 at 2:05 pm #158213Brad Dalton
ParticipantWhich classes did you want to target?
You can add a custom colour using PHP and CSS
add_theme_support( 'genesis-style-selector', array( 'executive-pro-brown' => __( 'Executive Pro Brown', 'executive' ), 'executive-pro-green' => __( 'Executive Pro Green', 'executive' ), 'executive-pro-orange' => __( 'Executive Pro Orange', 'executive' ), 'executive-pro-purple' => __( 'Executive Pro Purple', 'executive' ), 'executive-pro-red' => __( 'Executive Pro Red', 'executive' ), 'executive-pro-custom' => __( 'Executive Pro Custom', 'executive' ), ) );
And CSS example:
/* Executive Pro Custom --------------------------------------------- */ .executive-pro-custom a, .executive-pro-custom .entry-title a:hover, .executive-pro-custom .footer-widgets .entry-title a:hover { color: #60cd69; } .executive-pro-custom .genesis-nav-menu a { color: #666; } .executive-pro-custom .entry-title a, .executive-pro-custom .site-title a, .executive-pro-custom .site-title a:hover, .executive-pro-custom .site-footer a { color: #222; } .executive-pro-custom .content .entry-header .entry-meta .entry-comments-link a, .executive-pro-custom .footer-widgets .entry-title a, .executive-pro-custom .genesis-nav-menu .current-menu-item > a, .executive-pro-custom .genesis-nav-menu a:active, .executive-pro-custom a.button { color: #fff; } .executive-pro-custom .comment-header .comment-meta a, .executive-pro-custom .comment-metadata a { color: #bbb; } .executive-pro-custom .enews-widget input[type="submit"], .executive-pro-custom .content .entry-header .entry-meta .entry-comments-link, .executive-pro-custom .genesis-nav-menu .current-menu-item > a, .executive-pro-custom .archive-pagination li a, .executive-pro-custom a.button, .executive-pro-custom button, .executive-pro-custom input[type="button"], .executive-pro-custom input[type="reset"], .executive-pro-custom input[type="submit"] { background-color: #60cd69; } .executive-pro-custom .archive-pagination li a:hover, .executive-pro-custom .archive-pagination li.active a, .executive-pro-custom a:hover.button, .executive-pro-custom button:hover, .executive-pro-custom input:hover[type="button"], .executive-pro-custom input:hover[type="reset"], .executive-pro-custom input:hover[type="submit"] { background-color: #66d970; }
July 2, 2015 at 2:10 pm #158214toddlohenry
MemberThanks, Brad. Where would I make these edits? In what file?
July 2, 2015 at 2:24 pm #158215Brad Dalton
ParticipantJuly 2, 2015 at 2:32 pm #158217toddlohenry
MemberThanks, Brad...
-
AuthorPosts
Viewing 5 posts - 1 through 5 (of 5 total)
- The forum ‘General Discussion’ is closed to new topics and replies.