Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #84918
    Micke
    Participant

    How do I change the fonttype on post titles? Can’t find it in style.css

    #84939
    Mahesh
    Participant

    Hi Micke,

    You can achieve it with Custom CSS. Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    #content .post .entry-title > a {
        font-family: Times New Roman;
    }

    Note: Please change the font-family to your desired font.

    Regards,
    Mahesh

    #85018
    Micke
    Participant

    Thanks I’ll look in to that

    #85021
    Micke
    Participant

    I tried it but nothing happened at all it’s still same font family.

    #85022
    Mahesh
    Participant

    Hi Micke,

    Please post in you site url.
    Which font type are you trying to change the title to?

    Regards,
    Mahesh

    #85032
    Micke
    Participant

    My homepage is: http://www.mickesei.se

    I tried Lucida handwriting, but it didn’t work and I tried different other like comic sans, time new roman but it would not change.

    #85062
    Mahesh
    Participant

    Hi Micke,

    I thought you meant to change fonts for post title title, the above CSS won’t change the font for page titles. If you want to change all titles in content, use the following CSS.

    #content .entry-title > a {
        font-family: comic sans ms;
    }

    OR

    #content .entry-title > a {
        font-family: Times New Roman;
    }

    OR

    #content .entry-title > a {
        font-family: "Lucida Handwriting";
    }

    Note: If you want to use custom fonts, you’ll have to first import that font then only you can use it.

    Regards,
    Mahesh

    #85063
    Micke
    Participant

    OK thanx

    #85100
    Micke
    Participant

    Now I have tested it and it works sort of, it works on every page accept on the first one the main page.

    #85172
    Mahesh
    Participant

    Hi @Micke,

    If you want it on homepage only, please use the following CSS.

    .home #content .entry-title > a {
        font-family: Times New Roman;
    }

    Regards,
    Mahesh

    #85221
    Micke
    Participant

    No there was a problem a while so the new font was only visible on some pages and some had a other fonttype but now it seems to work. Thanks for your help.

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Change title fonttype’ is closed to new replies.