num_of_header_divider; for ( $index = 1; $index <= $num_of_header_divider; $index++ ) { if ( ! Astra_Addon_Builder_Helper::is_component_loaded( 'divider-' . $index, 'header' ) ) { continue; } $selector = '.ast-header-sticked .site-header-section .ast-builder-layout-element.ast-header-divider-' . $index; $css_output = array( $selector . ' .ast-divider-wrapper' => array( 'border-color' => esc_attr( astra_get_option( 'sticky-header-divider-' . $index . '-color' ) ), ), ); /* Parse CSS from array() */ $css_output = astra_parse_css( $css_output ); $dynamic_css .= $css_output; } return $dynamic_css; }