WordPress Themes, Plugins and HTML Templates › Forums › Bandana WordPress Theme › Justify Post and Widget text at Home › Reply To: Justify Post and Widget text at Home
June 17, 2017 at 9:35 am
#3575
admin
Keymaster
You may use following CSS snippet.
/* Justify Elements up to Small Devices i.e. 544px */
@media (max-width: 544px) {
/* Target Elements */
.entry-summary,
.textwidget {
text-align: justify;
}
}
Thanks