• Resolved selligx

    (@selligx)


    Hi Derek,

    How are you doing ?
    I encounter a problem with the display of the site on iPad Air in portrait mode.
    The display does not show all the information, I have to switch to landscape mode.

    Here are the screenshots: portraitlandscape

    What can I do to remedy the concern? I looked for a solution on the web but I have found nothing. What do you think ?

    Thank you in advance for your answer,
    Good reception,
    Best regards,
    Gilles

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Derek

    (@chiroderek)

    The theme is set up to drop the middle column from the layout when the screen is between 768 and 600 pixels. The theme was made for chiropractors, and we tend to use a lot of redundant info on our sites, so it’s easy to drop a column of redundant info in order to have the layout look better.

    If you need to show all three columns even between 600 and 768 pixels, then all you need to do is put some css in the child theme to override what’s in the parent theme. (Or use the simple css plugin)

    Pasting this in should do it.

    @media screen and (max-width: 768px){
    	#middle.front-page-columns {
        	display: block; /* overrides the "display:none" in parent theme */
    	}
    	.front-page-columns{
    		width:32%; /* overrides the "width:50%" in parent theme */
    	}
    }

    It should make the middle column come back, they’ll all just be kind of small and harder to read until the screen gets down to 600 px.

    Thread Starter selligx

    (@selligx)

    Hi Derek,
    Thank you for your response, it’s perfect.
    Good day.
    Best regards,
    Gilles

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘ipad air display problem in portrait mode’ is closed to new replies.