• Resolved tslminneapolis

    (@tslminneapolis)


    I would like to know the CSS to change the font style in the menu bar to verdana, and also I don’t want the lettering to be all caps. Thank you.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, this will do that for you with a fallback to Geneva and the browser-standard sans-serif in case someone does not have Verdana installed on their computer.

    .main-navigation a {
    	font-family: Verdana, Geneva, sans-serif;
    }
    Thread Starter tslminneapolis

    (@tslminneapolis)

    I see that I was not clear in what I was hoping to achieve. I’d like the titles in the drop-down menus to be sans serif. And I don’t want all caps. I hope that’s clearer. ??

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi, I’m seeing the titles on the dropdown menus as sans-serif right now.

    On the all caps, the designer set a separate text-transform for the submenus that I missed when I gave you the code in the other thread. This will take care of the submenu caps for you.

    @media screen and (min-width: 768px) {
    	.main-navigation ul ul a {
    		text-transform: none;
    	}
    }
    Thread Starter tslminneapolis

    (@tslminneapolis)

    Excellent! Thank you!!!!!

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    You are welcome.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Font Style in the Child Pages in the Menu Bar’ is closed to new replies.