• Resolved sheraton

    (@sheratonwalls)


    Hello WordPress Developers, I am trying to remove the gap between my Nav bar and Slider and in fact on all of my pages as well. We want our slider to fit really tight under the Nav bar. We have install the “Simple Custom CSS Plugin” and just need a little coding.

    Link to website! https://www.sayamen.tv/

Viewing 6 replies - 1 through 6 (of 6 total)
  • OK, I think I see where the problem is but I am not sure I can tell you how to fix it!

    Fist thing you have display: none; on the page title. So, <h1 class="entry-title"> is hidden. But that is contained in another element, <header class="entry-header"> which has a bottom margin on it.

    You could try to remove that with

    header.entry-header {
    margin-bottom: 0;
    }

    Above your slider there is an empty div element which has a margin set on it too. It looks like this:
    <div style="margin-top: 14px;"></div>

    That’s what has me foxed and as yet, can’t fix for you.

    You might need to fiddle with the PHP.

    The other thing to say is you might get better advice from the theme developer.

    Hmmmm,never done this before but you might try:

    div.entry-content.post_content > div[style] {
      margin-bottom: 0;
    }

    If those suggestions work, you might need to watch out for anything happening on other pages.

    And I would be interested to know how it goes.

    Thread Starter sheraton

    (@sheratonwalls)

    Thank you Martcol, that did it, just what the doctor order sir!

    God bless you!

    Sheraton

    I’m pleased!

    Maybe you can mark this as resolved.

    Thread Starter sheraton

    (@sheratonwalls)

    Sure, Thanks again!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How To Remove’ is closed to new replies.