htmlcsswordpress

Can't find a CSS margin to remove it


I'm trying to remove the margin, but I can't for the life of me see where it is in my WordPress stylesheet to remove it! I was hoping someone on hear could possibly help me? I have checked the H1, H2 tags, .bylines DIV and paragraph tags but nothing seems to be pushing the entry information approximately 15 pixels below the header.


Solution

  • To adjust these styles is highly recommended that you use the Firebug extension for Chrome or Firefox. So you can debug the html page and styles.

    In your case, simply set the property margin-bottom of selector .singular .entry-title with 0:

    .singular .entry-title {
    margin-bottom: 0;
    }