Another kind of page - width

Hi,
I am using a third party plugin for one page only - it’s a dashboard. This plugin is adding a new page template (just near pro theme templates - Blank. Container - etc).

This page with the other template from that plugin has the content in full-width, from edge to edge in the browser. What I need for this page is to have the content layout like all the other Pro pages (88% width, I think…).

Thank you!

Hi @ayatango,

Thank you for reaching out to us. You can adjust the page width by adding the following code in the Theme Options > CSS:

@media screen and (min-width: 992px) {
    .fed_dashboard_wrapper > .col-md-10.fed_dashboard_items {
        width: 70%;
        margin: 0 6%;
    }
}

@media screen and (max-width: 991px) {
    .fed_dashboard_wrapper > .col-md-10.fed_dashboard_items {
        width: 88%;
        margin: 0 6%;
    }
}

Please note we do not provide support for third party plugins or scripts as our support policy in the sidebar states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not native to X will need to be directed to the original developer.

Thank you for your understanding.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.