badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Justified text not being justified on iPhone

#39003

Hi Juna,

You have to override the CSS for smaller device too.
Please remove the above CSS code from the custom CSS and replace with below one.

.widget_featured_page .featured-page-content {
    text-align: justify;
}
@media only screen and (max-width: 767px) {
	.widget_featured_page .featured-page-content {
		text-align: justify;
	}
}

Thank you!