Tagged: Widget
Currently widgets will right justify when the sidebar is on the left.
How do I make the widgets left justify when the sidebar is on the left? Both header and body of the widget?
Thank you!!
Hi!
Add this to Quick CSS:
.sidebar_left.sidebar {
text-align: right;
}
Best regards,
Josue
awesome thx!
However that seems to get the body copy of the widget left justified, but the title remain right justified.
Do you know how to left justify the header?
Hey!
Please add following code to Quick CSS as well
.sidebar_left.sidebar h3.widgettitle {
text-align: left;
}
Best regards,
Yigit
thanks that worked!