• I’m not having any luck finding a solution for this, so I guess I’ll post and ask. What CSS does one need to use to make the navigation links both in the top main menu and the page/post navigation at the bottom NOT be in all caps with a “modern style” setup? I’m working on a test site right now, but the ultimate site this is for is an online lit journal so proper title and author name capitalization is a major issue.

    There’s a bunch of other issues I’m still trying to figure out before I can upgrade the site this is for. The only solutions I’ve been able to find are always for the “classic” style display and don’t work for the “modern” one. :-/ (For the record, I *hate* CSS and miss the days where one line of code controlled all the colors on a page. Trying to upgrade the WordPress on this site is giving me a migraine and I’m seriously wondering if it would take less time and headache to just re-do all 7,000+ pages as regular HTML.)

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,
    please try this in customizer (Advanced options -> Additional CSS):

    .regular-nav.nav__menu {
        text-transform: none;
    }
    Thread Starter Vertigo Xi’an Xavier

    (@vertigoxx)

    Thanks! That worked for the top menu. After a few tries, I got it figured out for the bottom nav links, too:

    .meta-nav {
    	text-transform: none;
    }

    Thanks again! I’ll probably post a few more questions this week (there’s a few other spots I haven’t been able to figure the CSS out for yet), but they’ll be for other issues (and other posts).

    Thread Starter Vertigo Xi’an Xavier

    (@vertigoxx)

    After posting above, I realized your code only fixed the all caps when looking at the site on a “regular” computer, not on a phone. I cut the “.regular-nav” part so it just specifies “.nav__menu” and that fixed it on all displays. ?? Thanks again!

    Hi,
    fine ??
    Now it’s fun to work with CSS, isn’t it?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Navlinks NOT in uppercase?’ is closed to new replies.