Menu Text-Align?

Hi guys,

I've tried to figure this out myself, but I haven't found a way yet . How can we left-align these texts menu?

Thanks in advance :raised_hands:

Hi,

A little tricky, took me a few to realize that the span isn't full width. So setting the width to 100% to the size of the div/item will push the text to the left when using text-align

menu .item span {
  text-align: left;
  width: 100%;
}

Hope this helps, cheers!
DMDComposer

2 Likes

thanks mate! you rule.

1 Like

Hi there,

this should do the trick as well:

.item div{
  text-align: left;
  justify-content: left;
}

Found this in basics.scss.

Cheers to yall :smiley:

2 Likes