• Resolved saferrier

    (@saferrier)


    Hi again,

    Hi, total WP.org newbie here.

    I cannot, for the life of me, figure out how to change the sizes of my post titles and widget titles in the side bar. With the new google font that I chose, the default font sizes are way too small. I’d like something more along the lines of the size for “Leave a Reply” in the Comments section.

    I figured out somehow how to change the navigation menu and how to change all of the fonts, but when I alter the values that I think are the font sizes, nothing happens (in the style.css a section with h1, h2, h3…)

    Where is that code (for post titles and widget titles) located and how do I change it? in the style.css or the edit CSS plugin?

    Thanks so much!
    Sam
    http://www.iciandla.com

    PS. Since I embedded (I think) my Google fonts in the head, they’ll be visible no matter what, right?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @saferrier

    h1, h2, h3, h4, h5, h6 etc

    are overridden by

    .widget .widget-title

    so you want something like in the edit css plugin:

    .widget .widget-title {
    font-size: 28px;
    }

    Since I embedded (I think) my Google fonts in the head, they’ll be visible no matter what, right?

    – Correct

    Thread Starter saferrier

    (@saferrier)

    Hi @salsaturation! Just tried it and that worked perfectly for the widget titles.
    With your input I was able to figure out the same command for .entry-title, worked like a charm.

    .entry-title, .entry-title a {
      color: #00a498;
    	font-size: 28px;
    }

    Thank you!!

    You’re welcome

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change title sizes’ is closed to new replies.