Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1005910
    toddfmay
    Participant

    I’ve been through the forum and have not found a solution for my poor iPad portrait display issues. I tried those I found, but nothing seems to help – http://dev-palmspringslife.pantheonsite.io/

    Landscape is fine – but at portrait the size > 1080 and < 750 is hideous at 748 it’s fine again.

    What options do I have?

    Thanks- Todd

    #1006284
    Nico
    Moderator

    Hi There,

    Thanks for writing in.

    You can early start the full width column earlier so that it would look great in portrait version. Try adding this in your customizer > Custom > CSS

    @media (max-width: 900px)
    .x-column.x-sm {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    Increase or decrease the max-width to adjust when to change to where you want to start the full width column.

    Hope it helps.

    Let us know how it goes.

    Thanks.

    #1006463
    toddfmay
    Participant

    Works great -Thanks- Todd

    #1006517
    Prasant Rai
    Moderator

    You are most welcome. 🙂

    #1007579
    toddfmay
    Participant

    Spoke too early is having no affect on ipad – collapsed correctly on browser at width setting but not on iPad!

    Todd

    #1007705
    Joao
    Moderator

    Hi Try using this code instead:

    
    @media (max-width: 900px) {
    .x-column.x-sm {
        float: none;
        width: 100%;
        margin-right: 0;
    } }

    If that does not work, please try this code instead

    @media (max-width: 900px) {
    .x-recent-posts a.x-recent-post2 {
        width: 100; 
        margin-bottom: 20px;
    } }
    
    

    Hope that helps,

    Joao

    #1008028
    toddfmay
    Participant

    nothing above seems to affect iPad display. Todd

    #1008478
    Friech
    Moderator

    Hi There,

    Use this CSS @media query instead.

    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (orientation: portrait) 
      and (-webkit-min-device-pixel-ratio: 2) {
      	.x-column.x-sm {
    	    float: none;
    	    width: 100%;
    	    margin-right: 0;
    	}
    }

    But before you do that, copy your whole CUSTOM CSS in CUSTOMIZER. Then go to this page http://csslint.net/ and checked your custom css there. Address all the errors (you can ignore the warnings).

    You can check my CSS @media query if it works by pasting it on top of your custom css.

    Hope it helps, Cheers!

  • <script> jQuery(function($){ $("#no-reply-1005910 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>