• Resolved ikraft

    (@ikraft)


    Hi Everyone,
    My site address is paperwalk.in

    I would like to edit the font and color for the entry tittle on each page, I mean the title that reads home, about us, contact us etc on each of the respective pages where they show up.

    Any sugesstions and advice on the same would be appreciated.

    Thanks for your help in advance.

    Kind regards,
    Navin

Viewing 4 replies - 1 through 4 (of 4 total)
  • This deals with the following lines in your stylesheet. You can add font and change the color there. I believe it’s line 1100 in your styl.css file.

    .singular .entry-title {
        color: #000000;
        font-size: 30px;
        font-weight: bold;
        line-height: 40px;
    }
    Thread Starter ikraft

    (@ikraft)

    Many thanks Patrick for your help appreciated.

    I have been able to change the color and the size but not the font.

    This is what i did not could only succeed in changing the color and size.

    .singular .entry-title {
    font: Lucida Sans;
    color: #747170;
    font-size: 24px;
    font-weight: bold;
    line-height: 48px;

    Is there a way to change the font as well?

    Thanks again,
    Navin

    Try changing

    font: Lucida Sans;

    to

    font-family: “Lucida Sans”;

    or

    font is used if you want to use a single declaration to set all the properties.

    Ex. using your values for font-weight, font-size, line-height and font-family

    font: bold 24px/48px “Lucinda Sans”;

    Thread Starter ikraft

    (@ikraft)

    thank you Ming Sheu I am able to change the font now…

    FYI i did this: font-family: “Lucida Sans”;

    thanks again

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing font color and size for twenty eleven’ is closed to new replies.