• Resolved crilith

    (@crilith)


    I have looked everywhere trying to find a way to change the font-size in the css for the button. I cannot locate any setting that actually works, and my css is not good enough to find it in the full theme editor. Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Which button are you referring to exactly? Can probably get you the right CSS if I know what I’m supposed to be looking at

    I had to use !important for both the background color and the font size, much as I don’t like to generally. Add to Customize > Additional CSS.

    a.btn.btn-primary {
      background-color: red !important;
      font-weight: 500;
      font-size: 18px !important;
      text-transform: uppercase;
      letter-spacing: .04rem;
    }

    Hope this helps. You can also increase the border radius with border-radius: 5px or whatever.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Big Title Button Font Size’ is closed to new replies.