• Where can I change ‘topic post font’ in the Blix theme. I’m searching in the layout.css and find H3 and change the ‘standard’ Blix topic post font in Arial but it’ don’t change. What’s the right line in the layout.css? Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • If by topic post font you mean the font of the post text, one would expect to see in your layout.css something like
    .entry{
    rules here
    }

    but there is only special rules for headings.
    The rule for the body includes a font-size:75%;.
    If you change this, all fonts will change.

    If you just want to change the content text, you can add a rule:
    .entry p{
    font-size:1.2em;
    }

    If you use .entry all headers will also change.
    Experiment with the value until you’re satisfied.

    Thread Starter erwin33

    (@erwin33)

    No I don’t want to change the fontsize only the fonttype, Arial for example. Where can I change that in the layout.css?

    If you want to change the font family for the post content, you can add to your style.css the following rule:

    .entry p{
    font-family:font-family: 'Times New Roman', 'Times', serif;;
    }

    If you want to change every font to Times New Roman or the like, you change the body rule for font-family to read
    font-family: 'Times New Roman', 'Times', serif;

    I wouldn’t recommend this though, as it will be hard to read.

    If you want to use serif fonts for the post content. I’d recommend that you add a
    font-size: 12px;
    to the .entry p rule as well.

    Serif fonts are harder to read on a screen, than sans serifs, because the serifs, while very helpful for the eyes on paper, are often too thin to be rendered well on a screen. Bigger fonts uses more pixels, so when scaled up they are acceptable.

    Hi everyone – all these fixes worked for me – cheers ?? I’m just posting around to let you know that Blix is broken after an upgrade to wordpress 2.1 – but it’s easily fixed – you can download a Free Blix Based Theme – Blixkrieg from here which looks the same, but works under 2.1 and allows the easy addition of adsense ads and channels as well.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Font change ‘topic post’ in Blix theme’ is closed to new replies.