[Resolved] Main navigation letter spacing

Home Forums Support [Resolved] Main navigation letter spacing

Home Forums Support Main navigation letter spacing

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #393618
    Luís

    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.

    #393702
    Tom
    Lead Developer
    Lead Developer

    Try this:

    .main-navigation .main-nav > ul > li > a {
        letter-spacing: 2px;
    }
    #394318
    Luís

    It works. Thank you Tom. 😉

    #394567
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.