[Support request] sticky navigation is overlapping the sticky sidebar widget after scrolling

Home Forums Support [Support request] sticky navigation is overlapping the sticky sidebar widget after scrolling

Home Forums Support sticky navigation is overlapping the sticky sidebar widget after scrolling

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1510221
    moy

    I have sticky sidebar widget for showing banner ads. But partly area of sidebar widget is hiding behind sticky navigation after scrolling.
    so is it possible to place the sticky sidebar widget just below the sticky navigation during scrolling the page?

    here is the screenshot –

    https://drive.google.com/file/d/1vDf0xOg12kR9puuEGjQ1ZugbUYsI38EJ/view?usp=sharing

    #1510688
    David
    Staff
    Customer Support

    Hi there,

    there should be a setting in your sticky plugin that adjusts the Top offset. Which would be the best way to fix the overlap problem.

    Or you could try this CSS, but i am not sure how well this will work:

    @media(min-width: 769px) {
        #page .site-content .is-right-sidebar {
            transform: translate3d(0,0,0);
            transition: translate3d 0.3s ease-in ;
        }
        #sticky-placeholder + #page .site-content .is-right-sidebar {
            transform: translate3d(0,70px,0);
        }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.