• What do I need to adjust to move content up higher to the nav bar. Theres a bit too much space between the page title and the menu.

    Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • A link to your site would help.

    Thread Starter elitesalesgroup

    (@elitesalesgroup)

    Id like to have the content butt right up against the menu bar. There’s a thin white space that I want to get rid of. The site is shield123.com

    Thank you so much for your help–

    I think the problem is the global top and bottom margins on the <p> tag. If you’re going to enter content via the HTML tab, you could get around this by applying <p>..</p> markup with a specific class to the first paragraph and then use CSS to set all margins on that specific class to zero.

    If your authors are going to use the Visual Editor, it gets harder. You could use the first-child pseudo-class to again remove all top & bottom margins on that first paragraph using something like:

    .PostContent p:first-child {margin-top:0;padding-top:0}

    but that will only work in Firefox, Opera and (I think) IE8. Not checked it in Chrome.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I slide my content up higher?’ is closed to new replies.