• Resolved tomowen3

    (@tomowen3)


    Hey guys,

    first things first, The theme I am having trouble with is the iconic one theme, not sure if I should post here?

    but assuming its ok to ask questions then:

    the problem i am having is after I @font-face(ed) a new font onto a blog it renders for pretty much everything except individual posts, these seem to fall back on rules in the html, rules which i am having a hard time locating.

    site: aportholewithaview.com
    e.g. of problem: single post

    how? where? what?

    link to a git hub of the project

    so yeah, is this something which can be changed?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The posts are <span> elements with inline styling. I am not sure why they are not showing up as <p> elements. Edit one of the blog posts and see if you can change the code from <span>to <p>, also make sure there is no font style applied inline.

    Thread Starter tomowen3

    (@tomowen3)

    Hey DylanAllen thanks for your reply I hadn’t noticed the posts where wrapped in the <span> tag, thank you for your insight, I went on to have a look at that.

    Turns out the <span> tag is from where I imported the content from a blogspot blog.

    This it turns out is also where imported the offending typeface (font) from, which is why I was unable to find the font-family: Verdana; any where in the php/template files.

    I was able to work around the problem with:

    span[style] {
             font-size: 1.25em !important;
             font-family: "anke_calligraphic_fgregular", cursive, sans-serif !important;
    }

    Which overrides the font from blog spot meaning the type face I wanted is now rendered.

    Glad I could help!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘wrong fonts displayed, hard coded html?’ is closed to new replies.