I’ve added the following to my css and it has sorted the issue on my Android but a screenshot from an iphone shows the issue remains on them…
Could anyone with a bit of knowledge check where I’ve gone wrong?
/* Responsive 4860-6953 and 8219-8502 */
@media screen and (max-width: 320px) {
}
@media screen and (min-width: 321px) and (max-width: 480px) {
}
@media screen and (max-width: 480px) {
.round-div {
left: -44px;
top: -44px;
}
.widget-front.hover .round-div, article.hover .round-div, .widget-front.focus .round-div, article.focus .round-div, .widget-front.active .round-div, article.active .round-div {
transform: scale(2.6);
-webkit-transform: scale(2.6);
}
.thumb-wrapper img {
right: 0;
max-width: 250px;
}
}
@media screen and (min-width: 481px) and (max-width: 767px) {
.round-div {
left: -44px;
top: -44px;
}
.widget-front.hover .round-div, article.hover .round-div {
transform: scale(2.6);
-webkit-transform: scale(2.6);
}
.thumb-wrapper img {
right: 0;
max-width: 250px;
}
}
@media screen and (min-width: 768px) and (max-width: 979px) {
.round-div {
left: -56px;
top: -56px;
}
.widget-front.hover .round-div, article.hover .round-div, .widget-front.focus .round-div, article.focus .round-div {
transform: scale(2.5);
-webkit-transform: scale(2.5);
}
.thumb-wrapper img {
right: 0;
}
}
@media screen and (max-width: 980px) {
}
@media screen and (min-width: 981px) and (max-width: 1024px) {
}
@media screen and (min-width: 1025px) and (max-width: 1169px) {
}
@media screen and (min-width: 1071px) and (max-width: 1200px) {
}
@media screen and (min-width: 1201px) and (max-width: 1366px) {
}