• On the site http://www.mycaribbeanblog.com, exactly where can I change the size and weight of the font of post titles such as “Puerto Rico Intro”? I want it to be roughly 12, normal weight, underlined.

    I expected to find it in CSS. In fact I was able to change the text color but mucking about with changing various codes still hasn’t hit it right.

    So, please, if it is in the CSS, what is the default coide and what must I cghange it to?

    Also – similar question – please look at:

    http://www.mycaribbeanblog.com/?cat=9

    On that page I want to control the display (font, size, color, etc) of both “Archive for the xxx” and for “SVG.” And is there a Language file where I can edit phrases such as “Archive for the”? I don’t see one anywhere.

    Isn’t there some doc that comments these codes to make it easier to manage these items?

Viewing 1 replies (of 1 total)
  • For the first one,

    add this to your CSS

    h2 a
    {
    font-size: 12px;
    font-weight: normal;
    text-decoration: underline;
    }

    Second similar qn

    Look for this part of your CSS

    h2.pagetitle {
    margin-top: 30px;
    text-align: center;
    }

    edit it for the style of “Archive for the xxx”

    To edit the SVG title

    h3 a, h3 a:link, h3 a:visited {
    color:#000;
    text-decoration: underline;
    }

    look for this one and edit as follow

    🙂

Viewing 1 replies (of 1 total)

The topic ‘where to edit post title fonts?’ is closed to new replies.