• Resolved HockeyOrDie

    (@hockeyordie)


    Hey Anders, great theme.

    Just wondering if there’s a way that I can change the font size for the titles of mt posts.

    It looks like I’m using an H1 but would rather go with something like H3.

    Can you help?

    Thanks,
    Trevor.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter HockeyOrDie

    (@hockeyordie)

    ps – my site is https://www.HockeyOrDie.com if you want to have a look ??

    Go to css and look for this rule:

    .post-title {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 15px;
    font-family: ‘Lato’, sans-serif;

    -ms-word-break: break-all;
    word-break: break-word;

    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    }

    Changing the value in “font-size: 2.5em;” should work.

    Thread Starter HockeyOrDie

    (@hockeyordie)

    Thank you Li! That worked out great!

    Any idea where I would change the font size for the main content of the posts?

    I tried changing the font size in here but it didn’t seem to cane anything.

    .post-content a.more-link {
    display: inline-block;
    background: #262626;
    padding: 10px 18px;
    color: #FFF;
    font-size: 0.85em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    }

    Theme Author Anders Norén

    (@anlino)

    Hi HockeyOrDie,

    In order to change the font size of the post content, find line 793 in style.css and change it to the following:

    .post-content { font-size: 1em; }

    Increase and/or decrease the value until you’re happy with the font size.

    Thread Starter HockeyOrDie

    (@hockeyordie)

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Making post title font smaller’ is closed to new replies.