Skill Bar Add Text

Hello,

I would like to add text inside the bar (white part)

Presently this is my code, what will be the .selector to add in the right area

.x-skill-bar .bar::after {
content: “IND Filing”;
background-color: transparent;
color: white;
font-weight: bold;
}

finally I fixed myself

.x-skill-bar::after {
content: “Ind Filing”;
background-color: transparent;
color: black;
font-weight: bold;
text-align: right;
padding:2px;
}

Glad to hear you got it sorted.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.