• Resolved andrew_long15

    (@andrew_long15)


    I finally was able to change the font of the p tag with this css:

    #site-content p {
    font-family: helvetica;
    }

    However, this did not change the font of my UL or OL, which are still in the default font.

    So I tried this:

    #site-content p, ul, ol {
    font-family: helvetica;
    }

    but still no change.

    How do I get the UL and OL to be the same font as the rest of the site?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • I used this custom CSS:

    p,ol,li {font-family: sans-serif; font-size:1em;}

    Thread Starter andrew_long15

    (@andrew_long15)

    Thank you so much for your reply.

    Oddly that fixed the ol & li elements but caused the P elements to revert to default.

    However, I solved the issue with a combination of both, as follows:

    #site-content p {
    font-family: helvetica;
    }

    ol,li {font-family: helvetica;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cannot change font of UL OL’ is closed to new replies.