• Hey folks,
    I’m having a little issue with hiding the navigation bars to the next and last post on each post.

    I’ve already tried several commands in Additional CSS (f.e.: .single .post-navigation {
    display: none;
    }

    but nothing seems to change anything, the bars are staying on the site.

    Could you help me out with this one, am I overseeing something?

    Cheers &
    Thanks already

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello,

    I would be glad to help you, but can you please first provide a link to your website in order to let me check it?

    Kind Regards, Roman.

    Thread Starter derdendas

    (@derdendas)

    Hey, sorry completely forgot about that, website link is the following:

    https://www.eastside-story.de/eastside-story-de/showroom/

    Cheers

    Hello, and thank you for the link.

    Can you please disable the caching/minification as well and leave here a note?

    Kind Regards, Roman.

    Thread Starter derdendas

    (@derdendas)

    Hey Roman,
    have disabled caching!

    One more question, think I’ll ask it directly on this topic, before I’ll reopen a new one: https://www.eastside-story.de/eastside-story-de/showroom/
    On the following page we also have like an extra button, it’s called ” See all our News”, but I didn’t work out to hide this one. Would be very thankful if you’d help me with this one!

    Thanks already!

    Hello,

    I’m having a little issue with hiding the navigation bars to the next and last post on each post.

    You can try to add this CSS code in the Customize → Additional CSS section.

    nav.navigation.post-navigation {
        display: none;
    }

    On the following page we also have like an extra button, it’s called ” See all our News”, but I didn’t work out to hide this one.

    You have this CSS code at the very bottom of your Additional CSS section:

    @media only screen and (max-width: 768px) {
    .content-area {
    width: 90% !important;
    max-width: 90% !important;
    }
    a.roll-button.more-button {
    display: none !important }

    …try to replace it with this:

    @media only screen and (max-width: 768px) {
        .content-area {
            width: 90% !important;
            max-width: 90% !important;
        }
    }
    
    .widget_sydney_latest_news a.roll-button.more-button {
        display: none;
    }

    Kind Regards, Roman.

    Thread Starter derdendas

    (@derdendas)

    Hello Roman,
    worked out perfectly, thank you very much!

    Cheers

    You are welcome!

    It would be nice if you mark this topic as Resolved ??

    Kind Regards, Roman.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Remove navigation.post-navigation’ is closed to new replies.