• Resolved jklarich

    (@jklarich)


    So I want all my text in the links in the widget areas and content area text to be the same font and size. I used the following CSS:

    p.ex1 {
         font: 12px arial, sans-serif;
    }

    and I have Widget Headings CSS as:

    /* style widget headings */
    /* style widget headings */
    .widget h3 {
        background: #769bf3;
        padding: 5px;
        border: 1px solid #666;
        font-size: 14px;
        font-family: arial, sans-serif;
    }

    My website is:

    http://grangerwashington.org/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi jklarich. Neither the <p> tag or the <h3> tag affect the link styling. You’re currently using this for links in the content area:

    .content a {
        color: blue !important;
    }

    And this for links in the wdigets:

    .widget a {
        color: #003300 !important;
    }

    If you set the same font family and size in those selectors then they should be the same.
    http://www.w3schools.com/css/css_font.asp

    Thread Starter jklarich

    (@jklarich)

    Got it done. Nice explanation.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Text Font Size and Family’ is closed to new replies.