• Resolved pitajpetru

    (@pitajpetru)


    I’d like to change giveWP dashboard default font Montserrat to Open sans.

    As per instructions found in: similar question I’ve added inline style using github istructions.

    My style is correctly queued on site but is being overridden by giveWP style.

    On developer tools in firefox my style is inline 12 and crossed:

    #give-donor-dashboard {
      font-family: "Open Sans", Arial,sans-serif !important;
    }

    and is being overridden by inline 1 style:

    #give-donor-dashboard {
      font-family: Montserrat,sans-serif !important;
      font-weight: 500;
      margin: 0 auto;
      max-width: 920px !important;
      position: relative;
      width: 100% !important;
    }

    I’ve tried changing priority on the snippet -1, 1, 1000, but that didn’t help.

    Would be grateful for help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Rick Alday

    (@mrdaro)

    Hi @pitajpetru,

    Happy to help.

    First, make sure you are also loading the font via CSS too. If you are using a font from Google Fonts be sure to enqueue the CSS file for it.

    Next, you can make your CSS statement “more specific” like this

    body.give-form-templates #give-donor-dashboard {...}

    If you still have issues please post a link to your Donor Dashboard page so we can check it out.

    Thanks!

    Thread Starter pitajpetru

    (@pitajpetru)

    More specific selector you suggested worked:

    body.give-form-templates #give-donor-dashboard {...}

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change dashboard font’ is closed to new replies.