• Resolved inj9nhs3fhpabx4

    (@inj9nhs3fhpabx4)


    Is there a way to change the font size for the Oceanwp Contact info widget, placed in the Oceanwp theme Footer?
    Tried changing the typography settings under Appearance, but no effect.
    Please advice how to change font size for desktop to 12px and mobile to 8px.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter inj9nhs3fhpabx4

    (@inj9nhs3fhpabx4)

    Figured it out…hope helps others facing same issue.
    Use browser inspect to detect class…then add the following CSS code:

    @media screen and (min-width: 768px) {
    .contact-info-widget {
    font-size:12px;
    }
    }
    @media screen and (max-width: 767px) {
    .contact-info-widget {
    font-size:8px;
    }
    }

    Theme Author oceanwp

    (@oceanwp)

    Glad to hear that ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Font size in Contact info widget’ is closed to new replies.