• I just imported my blog from blogger to WP. When I removed the feature pic (so that the first pic wouldn’t be shown double in every post), I’m left with some weird formatting at the top of posts. The first paragraph or so becomes left aligned, and I can fix that. But then I have a large amount of padding between the title and body of the post. I can’t figure out how to get rid of it.

    I’m not extremely code savvy, so baby steps please!

    http://www.popgoesperfection.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try going to your Dashboard > Appearance > Editor > style.css.

    Insert this code

    position: absolute;

    under your

    element.style

    So it should show like this:

    element.style {
        padding: 7px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        position: absolute;
    }

    Hope this helps!

    Thread Starter sheenasu

    (@sheenasu)

    Thank you for responding…I can’t find element.style in style.css
    Other ideas? Can I just add this code to style.css at the bottom? Will it override existing code?

    Thread Starter sheenasu

    (@sheenasu)

    It ended up being space reserved for adsense ads. This website hadn’t been approved for adsense, but the space was reserved. The approval came through and ads started popping up everywhere. Ooops. Thanks a lot adsense explosion!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Too much white space bt Title & post’ is closed to new replies.