• vdl

    (@dellalibera)


    I changed the font of the bullets and the menu has also changed. How can I specify only the font menu?

    (I went directly to the <p style = … in the form of menu, but this is not correct.)

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hey there,

    You didn’t provide a link or any example of what you were referring to so I’m kind of stabbing in the dark here.

    You could target the list item directly like:

    ul li {
    }

    With your CSS in there of course. That will affect all unordered list items on your site. You could get more specific and target through the container.

    Take care.

    Thread Starter vdl

    (@dellalibera)

    I’m sorry, this is the link voadora.com/2014

    only want to change the menu font, the font of the paragraph is already ok.

    The problem is that the lists are changing all together.

    Hi @dellalibera,

    Thanks for your reply! To target just the nav menu, from what I can see, you should be able to use something like this:

    nav#site-navigation ul {
        font-family: cursive;
    }

    That’s just an example, of course. You can specify whatever you want for the font.

    How does that work for you?

    Cheers,
    David

    Thread Starter vdl

    (@dellalibera)

    Hi David,

    it worked but this changing text fields that have bullets.

    I need to change only the font menu.

    Thank you !

    Hi @dellalibera,

    Well actually, that snippet should only affect the nav menus items. It shouldn’t affect any other lists so the bullets should be as normal with other lists.

    To help us understand better though, would it be possible for you to show us a screenshot of what you want to achieve?

    You could post a screenshot through any service like screencast.com, Google Drive or Dropbox.

    Thanks!
    David

    Thread Starter vdl

    (@dellalibera)

    Hi @dellalibera,

    Hope you’re well today! Very sorry for the delay here, looking at you screenshot though, it’s definitely not the font change I mentioned above that is altering your other font.

    That is being done by some other styling. The CSS I provided above cannot change that other font, it can only affect fonts within a nav element and only those with an id of site-navigation.

    If you could provide a link, we could see what’s causing the other font change.

    How does that sound?

    Cheers, David

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to change default font menu ?’ is closed to new replies.