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*

Justified text not being justified on iPhone

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #38985
    contacto
    Participant

    Dear support,

    I would like the TH: Featured Page text to be justified, so I added the following Custom CSS

    .widget_featured_page {
    text-align: justify;
    }

    Using that code the text appears justified on laptops, ipads, etc.. but is still non-justified in small screens as mobile phones (tested on iPhone 6 & Samsung SIII). Is there any thing I am missing here?

    Thanks and regards,

    Juan.

    #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!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.