• Resolved chrillegrn

    (@chrillegrn)


    I really love UM, but since we’ve built our website with a different theme than UM, I can’t seem to figure out a way to change the font family on the UM profiles. I have a custom CSS-snippet to change the color of the font – is there a similar snippet, but with font family?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support andrewshu

    (@andrewshu)

    Hello @chrillegrn

    Did you add the font family? Like this (example):

    p{
      font-family: Verdana, Arial, Helvetica, sans-serif !important;
    }

    Thank you.

    Thread Starter chrillegrn

    (@chrillegrn)

    Hi andrewshu, thank you for your reply!

    Nope, that was exactly what i was looking for – but how do i call on only the UM-paragraphs? I hope it makes sense

    Plugin Support andrewshu

    (@andrewshu)

    Hi @chrillegrn

    First of all you could use the .um selector and then the needed tag. For example:

    .um p{
      font-family: Verdana, Arial, Helvetica, sans-serif !important;
    }

    What exactly do you want to change? If you need to change font for all profile – use this code:

    .um.um-profile {
         font-family: Verdana, Arial, Helvetica, sans-serif !important;
    }

    Regards.

    Plugin Support andrewshu

    (@andrewshu)

    Hi @chrillegrn

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread if any other questions come up and we’d be happy to help. ??

    Regards

    Thread Starter chrillegrn

    (@chrillegrn)

    Hi Andrew – Sorry i forgot to reply.

    Thank you for the help, it fixed my issue ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do we change the font family on UM profile?’ is closed to new replies.