Change alignment of sidebar (align text right, when sidebar is on the right)

Dear support team,

I use the activello theme with the sidebar on the right. The default is that the elements of the sidebar are all left-aligned. I would like them to be aligned to the right. So keep the sidebar on the right side, and align the whole sidebar (so all text/links and the decorative lines) to the right side of the thin grey lines instead of to the left side.

Is that possible?

I found some hints in this thread (https://colorlibsupport.com/t/center-sidebar-widget-titles/) but could only move the widget titles but not the widgets (well, the links under the titles) in this way.

This is a beautiful theme and what a fantastic service that you even provide support! I’m using wordpress for the first website that I build and find the activello theme very user-friendly and pretty. Thank you!

Hi @kicon,

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

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 -> Activello Options -> Other -> Custom CSS


.has-sidebar-right div#secondary * {
    text-align: right;
}

.has-sidebar-right #secondary .widget-title:after{
  right: 0;
  left: auto;
}

Best Regards,
Movin