Homepage › Community Forums › Epik Theme Support › Changing link color in Epik theme › Reply To: Changing link color in Epik theme
Look for the widget areas that will look something like this –
/**
* Display widget content for the "Welcome-wide", "Welcome Feature 1", "Welcome Feature 2", and "Welcome Feature 3" sections.
*
*/
function epik_home_loop_helper_welcome() {
if ( is_active_sidebar( 'welcome-wide' ) || is_active_sidebar( 'welcome-feature-1' ) || is_active_sidebar( 'welcome-feature-2' ) || is_active_sidebar( 'welcome-feature-3' ) ) {
echo '<div class="welcome">';
genesis_widget_area( 'welcome-wide', array(
'before' => '<div class="welcome-wide"><div class="wrap">',
'after' => '</div></div>',
) );
echo '<div class="welcome-features"><div class="wrap">';
genesis_widget_area( 'welcome-feature-1', array(
'before' => '<div class="welcome-feature-1">',
'after' => '</div>',
) );
genesis_widget_area( 'welcome-feature-2', array(
'before' => '<div class="welcome-feature-2">',
'after' => '</div>',
) );
genesis_widget_area( 'welcome-feature-3', array(
'before' => '<div class="welcome-feature-3">',
'after' => '</div>',
) );
echo '</div><!-- end .wrap --></div><!-- end .welcome-features --></div><!-- end .welcome -->';
}
}
There is a new update coming soon that automatically does what you’re trying to do. Wes sent me the updated version but it’s still in beta so it’s not available just yet. The code above is what I just copied from the new version. If you haven’t made any other changes to your home file, try and replace your code with the code above. If I were you, I’d do it from FTP and not the WordPress editor just in case a mistake is made.
I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com
