Centering & Resizing footer images on mobile
-
I have the following code in my Custom CSS section of my theme which I’m using for three different sites. It is working on 2 of the sites but not the third. On the third site the images in the footer do not center and resize. Any ideas why ? thanks.
It works on:
https://www.geminifloors.com
https://www.geminithermohvac.comOn this site, it’s not working, it’s just showing the left side of the images:
https://www.geminicontractor.com/* center images on mobile screens */
@media (max-width:320px)
{
#content .alignleft, #content img.alignleft {width: 100% !important;
}
}@media (max-width:480px)
{
#content .alignleft, #content img.alignleft {
width: 100% !important;
}}
/* center footer images on mobile */
img.size-full.wp-image-102.aligncenter {
width: 100%;
}@media (max-width:320px)
{
img.aligncenter.size-full.wp-image-382 {
width: 100%;
}}
/* auto size footer images on mobile */
img {
height: auto;
}The page I need help with: [log in to see the link]
- The topic ‘Centering & Resizing footer images on mobile’ is closed to new replies.