Astra_Dynamic_CSS::unset_builder_elements_underline()

Remove text-decoration: underline; CSS for builder specific elements to maintain their UI/UX better.


Description

  1. UAG : Marketing Button, Info Box CTA, MultiButtons, Tabs.
  2. 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 );
		}

Changelog

Changelog
Version Description
3.6.9 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.