• Please help me in moving the sidebar which is too close to the container and position it near the right end of the page. Click here

    Also, how do i keep a different side bar for my homepage vs blog post. I want to have a plain sidebar for blog post and not the one i use on my homepage. Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    The reason your site is so far to the left is due to this custom code you have:

    @media (min-width: 755px) {
        .grid-container {
            margin-left: 60px;
        }
    }

    If you remove that and increase your container width, it will move the sidebar more to the right.

    To show different sidebar widgets on different pages, try this plugin: https://ww.wp.xz.cn/plugins/content-aware-sidebars/

    Let me know if you have any other questions 🙂

    Thread Starter devesh70

    (@devesh70)

    I would like to retain the container size with the left margin. Is it possible to move the side bar without impacting these settings as there is plenty of space on the right after the sidebar on the page. I want to place the side bar to the extreme right. Thanks.

    Theme Author Tom

    (@edge22)

    Without increasing your container width, you could try this:

    @media (min-width: 769px) {
        #right-sidebar {
            position: absolute;
            right: 0;
        }
    }
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Sidebars Position’ is closed to new replies.