• Resolved zorba999

    (@zorba999)


    Hi
    I have been trying to change the widget width and increase the page size, but cant get it to work. I might be changing the wrong .css file. Any help ?
    Thanks
    Andy

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Mahesh Waghmare

    (@mahesh901122)

    Widget width? Do you mean sidebar width? You can only change the container width. The sidebar and the content width automatically decided in the ratio.

    Do you want to set custom width for sidebar?

    Thread Starter zorba999

    (@zorba999)

    Hello
    Yes I want to make sidebar width a custom size

    Theme Author Mahesh Waghmare

    (@mahesh901122)

    Can you please share your website URL? I’ll check it and provide a valid solution.

    Thread Starter zorba999

    (@zorba999)

    Theme Author Mahesh Waghmare

    (@mahesh901122)

    Thanks for sharing.

    If you want to change the sidebar width then you need to change the content width too. Both are depended on each other.

    E.g. I have to change the sidebar width to 40% then I need to set the content width to 60%. Use CSS to change the sidebar width.

    @media screen and (min-width: 768px) {
        .layout-sidebar-content #primary {
            width: 60%;
            left: 40%;
        }
        .layout-sidebar-content #secondary-left,
        .layout-sidebar-content #secondary-right {
            width: 40%;
            left: -60%;
        }
    }

    Screenshot:

    • This reply was modified 7 years ago by Mahesh Waghmare. Reason: Added screenshot
    Theme Author Mahesh Waghmare

    (@mahesh901122)

    Hope the issue is resolved. So closing the ticket. Re-open it if you have another issue.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Widget width’ is closed to new replies.