How to resize sidebar

Hi everywone!

First of all let me congratulate you about the great theme that you’ve made. I’m currently using it for my personal blog and I’m really exited with it.

However, I have an issue which I don’t know how to resolve: I would like to decrease the size of the right sidebar to 300px (by default it is 400px), so I can align all my widgets, because now they are little messy, as you can see if you access the page: www.nichestats.com.

Will you please provide me with solution for that?

Thank you.

Hello Velinsky,

Thanks your appreciation :slight_smile:

First remove following css line from where you added it.

.widget_mailchimpsf_widget { width: 300px; }

After this add following lines in your style.css or custom css box provided by rtPanel.

@media only screen and (min-width: 1025px) {
    .rtp-sidebar-inner-wrapper {
        float: right;
        max-width: 340px;
        padding-left: 40px;
    }
}

Let me know if you have any further issues.

Thanks

Worked like charm, thank you very much for your assistance!

You are welcome :slight_smile: