Astra_BB_Ultimate_Addon::button_text_hover_color()
Button Text Hover Color
Description
Source
File: inc/compatibility/class-astra-bb-ultimate-addon.php
public function button_text_hover_color() {
$link_hover_color = astra_get_option( 'link-h-color' );
$btn_text_hover_color = astra_get_option( 'button-h-color' );
if ( empty( $btn_text_hover_color ) ) {
$btn_text_hover_color = astra_get_foreground_color( $link_hover_color );
}
return $btn_text_hover_color;
}
Expand full source code Collapse full source code View on Trac