Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to make the titles look right.

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #43946
    ricksmith
    Participant

    Hey guys, on this [test site](http://noahsdad.com/test “noahs dad”) you’ll notice toward the bottom two sections that say “Down Syndrome Resources” and Down Syndrome Therapy” I want that to look right where everything is on one line. What is the best way to do this?

    Thanks.

    #130940
    Podders
    Participant

    Just reduce the font size, in http://noahsdad.com/test/wp-content/themes/noah/style.css?ver=1.9.1 on line 262, change the size from 1.5rem to 1.3rem,

    Also, be aware the the rem unit is not supported in IE previous to version 9 so it’s probably best to add a fallback for browsers that dont support it,

    http://caniuse.com/#search=rem

    h3, h4, .after-post h4, .archive-title, .taxonomy-description h1 {
    font-size: 1.3em;
    font-size: 1.3rem;
    }

    #130942
    ricksmith
    Participant

    Hey thanks! How does it look now?

    #130943
    Podders
    Participant

    Looking good :)

    #131050
    ricksmith
    Participant

    Thanks man!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘CSS’ is closed to new topics and replies.