How to Decrease Width of Sidebar?

Hi Movin,

How do I decrease the width of my sidebar?

Also, how do I centralize the ‘Dazzling Popular Posts’ widget?

Sincerely,
Yvonne

Hi Yvonne,

I hope you are well today and thank you for your question.

How do I decrease the width of my sidebar?

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS


@media (min-width: 992px){
#primary {
    width: 70%;
}
#secondary{
    width: 30%;
}
}
Also, how do I centralize the ‘Dazzling Popular Posts’ widget?

If you want to center its text content then you can do so by using the below CSS code as described above.

.widget.tabbed .tab-content {
    text-align: center;
}

Best Regards,
Movin

Thanks Movin,

It worked. :slight_smile:

Yvonne

You are most welcome here :slight_smile: