Astra_Dynamic_CSS::unset_builder_elements_underline()
Remove text-decoration: underline; CSS for builder specific elements to maintain their UI/UX better.
Description
- UAG : Marketing Button, Info Box CTA, MultiButtons, Tabs.
- UABB : Button, Slide Box CTA, Flip box CTA, Info Banner, Posts, Info Circle, Call to Action, Subscribe Form.
Source
File: inc/class-astra-dynamic-css.php
public static function unset_builder_elements_underline() { $astra_settings = get_option( ASTRA_THEME_SETTINGS ); $unset_builder_elements_underline = isset( $astra_settings['unset-builder-elements-underline'] ) ? false : true; return apply_filters( 'astra_unset_builder_elements_underline', $unset_builder_elements_underline ); }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
3.6.9 | Introduced. |