• Resolved hjbrandt

    (@hjbrandt)


    Hey everyone.
    I recently changed themes on my blog (https://hjbrandt.biz) , and have done quite alot of tweaking in the .css and a bit on some of the .php′s… (i′m a complete newbie when it comes to code!)

    The weird problems I am having is that the font on the first post of a page is how it is supposed to be, but all the lower posts are in bold letters..? I feel like I have tried everything to fix it, but now I′m giving up… I would also like my sidebar links to not show up in bold..!

    h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family:”century gothic”, “Times New Roman”, Times, georgia, serif;
    text-transform: capitalize;

    (further down)

    #content {
    float:left;
    text-align:justify;
    font-size: 1em;
    margin:0 0 30px 30px;
    min-height:400px;
    width: 696px;
    }

    #poster > div{
    margin-bottom:30px;
    }

    #post-content{
    padding:30px;
    background-color:#fff;
    float:left;
    width:500px;
    min-height: 400px;
    -moz-border-radius:0px;

    The other problem I have is that when I created a bigger header then 200×200 pix, it was scaled to about 50% the original size? (I did change the header height and with in the .css to match the header .png)

    #header {
    width: 924px;
    height: 200px;
    margin: 30px 30px 30px 30px;
    line-height: ;
    color: ;

    thanks for looking into it.
    HJ

Viewing 2 replies - 1 through 2 (of 2 total)
  • i′m a complete newbie when it comes to code!

    Kudos to you for having a go. It really is the best way to learn. ??

    You are so going to kick yourself over this. You’ve omitted a closing </b> tag in your comments_popup_link() parameters in your index.php template file. So that’s throwing all following text into bold format. If you’re going to be correcting this, do yourself a favour and use <strong></strong> instead of <b></b> for bold markup. It’s better semantic markup.

    And allow me to introduce you to the W3C markup validator. It’s really an excellent tool for picking up these kinds of errors (and probably a few others that you weren’t even aware of). Just ignore the errors relating to <embed></embed>.

    Thread Starter hjbrandt

    (@hjbrandt)

    hahaha, all the hours I have spend on this dumb mistake!

    Thank you so much… this made me laugh, and it made me happy!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Font and header problems’ is closed to new replies.