';
if( get_option( 'acp_skiplinks', false ) ) {
$output .= 'ul#acp_skiplinks > li > a {';
$output .= (get_option('acp_skiplinks_bg')) ? 'background-color:' . get_option( 'acp_skiplinks_bg' ) . ';' : '';
$output .= (get_option('acp_skiplinks_textColor')) ? 'color:' . get_option( 'acp_skiplinks_textColor' ) . ';' : '';
$output .= (get_option('acp_skiplinks_linkUnderline')) ? 'text-decoration: none !important': 'underline';
$output .= '}';
}
$output .= '';
echo $output;
}
if( get_option( 'acp_skiplinks', false ) ) {
add_action('wp_head','acp_frontend_styles');
}