• Resolved Brock Poling

    (@brock-poling)


    I am now trying to figure out how to change the font sizes of both my Text Widget titles and body text.

    I have been rooting around in my style.css file but can’t seem to find what controls the font size for this element.

    Any suggestions? My site is https://www.concealandcarryhq.com

    Thanks for any help you can share.

Viewing 2 replies - 1 through 2 (of 2 total)
  • in style.css:
    for the widgets in general:

    #main .container .sidebar .widget {
    					margin-bottom:20px;
    				}

    (add some desired font-size: 20px; or so to this)
    and

    #main .container .sidebar .widget h3 {
    						padding:0 10px 10px;
    						padding-top:0;
    						margin-bottom:15px;
    						font-size:24px;
    						color:#747474;
    						border-bottom:1px solid #e3e3e3;
    					}

    (edit the font-size in there)

    —————
    if this has to be specific to textwidgets, add some new styles;
    example:

    #main .container .sidebar .widget.widget_text { ... }
    and
    #main .container .sidebar .widget.widget_text h3 { ... }

    Thread Starter Brock Poling

    (@brock-poling)

    Awesome! Thanks, that did the trick.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Font Sizes in Text Widgets’ is closed to new replies.