• I am having a problem with the line height being different on my pages vs my posts. The pages on my site look condensed and out of place compared to the rest of the sites posts and custom post types.

    Any ideas?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Can you post a link to your website?

    Thread Starter thomjob

    (@thomjob)

    Sorry about that. Here it is – http://www.albanypoets.com/

    I think that it may be a plugin that is causing this problem and not the theme. It was not a problem last week, but since I updated a couple plugins over the weekend it popped up.

    This line seems to be causing the issue:

    .g { margin:0px; padding:0px; overflow:hidden; line-height:1; zoom:1; }

    Looks like it’s related to the AdRotate plugin. You might wish to check the plugin settings and see if you can change that. Otherwise, you could get a custom CSS plugin and put this:

    .g {
    line-height: 1.5 !important;
    }

    Actually, I take that back. That’s not a good solution. Instead, you should set a line-height on the <p> tag instead:

    p {
    line-height: 1.5 !important;
    }
    Thread Starter thomjob

    (@thomjob)

    Great! Thank you for the help.

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

The topic ‘post vs page line height’ is closed to new replies.