• Resolved hrosc

    (@hrosc)


    Can someone help me?
    I am trying to change font in weblog title. I edited trough CSS files, tried different templates that looked like they have different fonts in title, but the results where always the same.

    Thank you for help,
    Hrosc

Viewing 5 replies - 1 through 5 (of 5 total)
  • Since we don’t know what theme are you using and we don’t have a link to your blog – it’s difficult to guess…
    Usually a blog title’s font is in the header section (div) and h1 heading.

    it could be that the image has the title on it….are you sure you’re modifying h1?

    also, you can always try using !important…

    example:

    h1 {
    font-size: 2.2em;
    align: left;
    font-family: ‘Comic Sans’ !important;
    }

    Thread Starter hrosc

    (@hrosc)

    @resiny:
    Already tried that, but it didn’t work. Still thank you for help.

    @moshu:
    I am using ‘Journalized Winter 1.00’ and here is my link https://www.bilic.us/

    Thanks for helping me!
    Hrosc

    the title is:
    <h1 id="header"><a href="...">Bilic Blog</a></h1>

    So:

    h1 {}
    #header {}
    h1#header {}
    #header a {}

    …etc. all should reference.

    Note that you need to do your ‘override’ AFTER any other declarations in the CSS that set up those elements, or in place of them…

    -d

    Thread Starter hrosc

    (@hrosc)

    It works!
    Thank you, thank you, thank you… (x1000)

    Now I have to decide which font to use! ??

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