function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RapaxRapax 

Label under progressStep in Lightning progressIndicator

Hello everyone,

I would like to have a text label under every step of the progress indicator in Salesforce Lightning.
I tried something like:
 
<lightning:progressIndicator currentStep="step2">
  <lightning:progressStep label="AAA" value="step1"/> 
    <div class="slds-p-top_xx-small">
      LABEL 1
    </div>	        	

  <lightning:progressStep label="BBB" value="step2"/>
    <div class="slds-p-top_xx-small">
      LABEL 3
    </div>

  <lightning:progressStep label="CCC" value="step3"/>
    <div class="slds-p-top_xx-small">
      LABEL 4
    </div>
		
</lightning:progressIndicator>
With this result:

Progress Indicator Error

I also tried to insert the steps inside a lightning:layout table, but in this way popovers up to the icons didn't work anymore...

Can you please help me?
Thank you very much