• Resolved myosotis

    (@myosotis)


    I have a menu widget, and it displays as a dot list. I would like to change the list style to ‘none’ and the font. I can’t find where.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Let’s see the Webpage with the menu widget

    Thread Starter myosotis

    (@myosotis)

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    The dots are special characters in the “:before” selector, to remove them add:

    #menu-kategorier-en li:before {
     content: "";
    }

    Thread Starter myosotis

    (@myosotis)

    That works! What would be the best way to change the font of the list items? (To the sans serif font in the top menu).

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    What about adding the font into the ‘li‘ like the above style but without the ‘:before‘? E.g.:

    #menu-kategorier-en li:before {
     font-family: 'Lucida Grande', inherit;
    }

    Thread Starter myosotis

    (@myosotis)

    I added it like this, but it doesn’t seem to work.

    #menu-kategorier-en li:before {
     	content: "";
    	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
    	text-transform: uppercase;
    	font-size: 11px;
    }

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Sorry bad example, I forgot to remove the “:before” in my example. The example should be this:

    #menu-kategorier-en li {
     font-family: 'Lucida Grande', inherit;
    }

    Thread Starter myosotis

    (@myosotis)

    That works great! Thank you so much for responding so quickly to all my questions.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Lists in widgets’ is closed to new replies.