Widget to be fixed in space so it follows reader

  • Unknown's avatar

    I want my widget for my FREE FB group to follow the reader when they scroll up and down. So it’s fixed?
    Can someone help me with this? Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, I don’t see that you have the Custom Design Upgrade, which would be required in order to add custom CSS. You can find out more about the Custom Design Upgrade by going into your admin dashboard to Store > Store.

    You can try out and preview custom CSS before you buy as explained here. In order to save and apply the CSS changes to your site, you would need the upgrade.

    The challenge is that the fixed widget will be over the other widgets in your sidebar, and Twenty Sixteen is a responsive designed theme that adjusts to all screen/window widths. At 909px and narrower, the content goes full width and the sidebar moves below the content, so we have to limit this change to 910px and wider screen/window widths or it will overlay your content and make reading it hard. You can follow the instructions in the link I gave to how to preview custom CSS and give it a try. Make sure and narrow and widen your browser window.

    @media screen and (min-width: 910px) {
    .site {
        position: relative;
    }
    #text-6 {
        position: fixed;
        top: 250px;
    }
    }
  • The topic ‘Widget to be fixed in space so it follows reader’ is closed to new replies.