This topic has 4 replies, 3 voices, and was last updated 9 years, 5 months ago ago by Eva Kemp
Hi guys,
I noticed that that the little circles on the blog images are not aligned when using the mobile, they are not staying inside the circles?
Blog page in private
Hello,
Please add this code in your child style.css:
@media (max-width: 480px) {.wp-picture .zoom a:first-child span::before {
margin-top: 20px !important;
margin-left: -2px !important;
}
.wp-picture .zoom a:last-child span::before {
margin-top: -8px !important;
margin-left: -2px !important;
}}
Best regards,
Jack Richardson.
Thanks that worked for the iPhone!
Just realised that that on the iPad in landscape the icons are not displaying properly?
How about for the image when inside the actual blog post, there is no symbol to enlarge the image?
Hello,
Please add this code as well:
@media only screen and (max-width: 1025px) and (min-width: 980px) {
.wp-picture .zoom a:first-child span::before {
content: "\f002" !important;
font-family: "FontAwesome";
margin-top: 22px !important;
margin-left: -2px !important;
}
.wp-picture .zoom a:last-child span::before {
margin-top: -7px;
margin-left: -2px;
}}
@media (max-width: 480px) {.wp-picture .zoom a:first-child span::before {
margin-top: 20px !important;
margin-left: -2px !important;
content: "\f002" !important;
}}
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up