Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #316030
    ujesko
    Participant

    I want to reduce the space between primary menu and header featured image on posts and sides. It should be the same space as on my landing page.  To have a consistent layout. Take a look at: jesiorkowski.de

    #316041
    tikaram
    Keymaster

    @ujesko : I don’t seem to find any issue with spacing between the primary menu and Header image. Can you please check again and let me know the link where you are having issues.

    Regards,
    Tikaram

    #316048
    ujesko
    Participant

    I recognized that these different spaces are caused by hiding the post titles. Can I reduce that empty space?

    #316044
    ujesko
    Participant

    The distance between header menu and the photos on landing page is different to the distance between menu and post images in posts. Take a look here: landing  –    posts.

    Is it possible to send you screenshots? 🙂

    #316091
    tikaram
    Keymaster

    @ujesko : Login to your WordPress admin section. Go to Appearance => Customize => Additional css and add the following css.

    @media screen and (min-width: 90em) {
      .single .singular-section {
        padding-top: 0;
      }
      .singular-section .content-area .post-thumbnail {
        margin-top: 0;
      }
    }

    Let me know if this helps you out.

    Regards,
    Tikaram

    #316104
    ujesko
    Participant

    It works perfectly! Many thanks, Tikaram. 🙂 How does it also work for pages? I tried to change “post-thumbnail” to “page or site-thumbnail”, but it didn’t work.

    #316131
    tikaram
    Keymaster

    @ujesko : Please replace the previous additional css with the css below.

    @media screen and (min-width: 90em) {
      .single .singular-section,
      .page .singular-section
        {
            padding-top: 0;
        }
      .singular-section .content-area .post-thumbnail {
           margin-top: 0;
      }
    }

    Let me know if this helps you out.

    Regards,
    Tikaram

    #316133
    ujesko
    Participant

    Many thanks again! It works! 🙂

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Fotografie Pro space between primary menu and featured image’ is closed to new replies.