Support » Fixing WordPress » how to put this part a bit more to the top

  • hello dear wordpress experts – want to put the slider that can be seen in the page http://www.literaturen.org at the top i want to put this a bit higher.

    In other words: i want to put this a bit more to the top. is this doable!?

    love to hear from you

Viewing 1 replies (of 1 total)
  • You can add this to your Child Theme style.css file, or using a Custom CSS plugin.

    .content-area {
        padding-top: 0;
    }
    @media screen and (min-width: 846px) {
        .content-area {
            padding-top: 0;
        }
    }

    This will affect all posts/pages/archives.

    Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘how to put this part a bit more to the top’ is closed to new replies.