XF 1.5 Iphone Half Images

wickedstangs

Well-known member
There may be a simple solution to this issue, but...
Some of my members, When viewing pictures on my iPhone 5S and 5C they only see half, if they turn the phone 90 degrees for the theater view I still do not see the entire picture. Is there a setting for this?
 
You've added a hardcoded max height and max width in pixels for image via CSS. The default is 100% which is responsive. You'll either need to remove the hard coding or take an approach where you specify different max sizes using media queries.
 
You've added a hardcoded max height and max width in pixels for image via CSS. The default is 100% which is responsive. You'll either need to remove the hard coding or take an approach where you specify different max sizes using media queries.
In my Extra CSS?

My Extra CSS
Code:
.message .signature .bbCodeImage {
max-height: 150px !important;
max-width: 600px !important;
overflow-x: auto !important;
overflow-y: auto !important;
}

.bbCodeImage {
max-height: 480px !important;
max-width: 800px !important;
}

.nodeList .categoryStrip .nodeDescription {
    font-size: 12px;
    color: rgb(25,255,0) !important;
}
 
Top Bottom