[Resolved] Justification changes on mobile screens

  • Author
    Posts
  • #15892

    Andrew Misplon
    Keymaster

    Hi Art

    Thanks for reaching out. In Custom CSS you can try:

    @media (max-width: 480px) {
    	.alignleft, .alignright {
    		clear: none;
    		display: inline;
    		margin-left: unset;
    		margin-right: unset;
    		float: none;
    	}
    	.alignleft {
    		float: left;
    		margin-right: 27px;
    	}
    	.alignright {
    		float: right;
    		margin-left: 27px;
    	}
    	.entry-content {
    		hyphens: auto;
    	}
    }
    #15894

    Arthur Rudick
    Participant

    Thanks Andrew!!!!! That worked.

    #15896

    Andrew Misplon
    Keymaster

    Super, glad to hear that helped.

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Justification changes on mobile screens’ is closed to new replies.

Scroll to top