Site logo

Archived topic

Main navigation letter spacing

3 replies · Started by Luís on September 28, 2017

Viewing posts 1–4 of 4

Hello.

I need to increase main nav letter spacing so I tried this code:

.main-navigation .main-nav ul li a {
letter-spacing: 2px;
}

But it increases sub-nav text as well. So my question is, what code can i use to restrict letter spacing ONLY to main nav?

Thank you.

Try this:

.main-navigation .main-nav > ul > li > a {
    letter-spacing: 2px;
}

It works. Thank you Tom. ;)

You're welcome :)

This archived topic is closed to new replies.