简体   繁体   中英

How to I change the alignment of the image and text on my wordpress site?

I have a wordpress site dishingup.com and am having issues with the alignment on tablet and mobile

Here it is on mobile:

在此处输入图片说明

And here it is on tablet

在此处输入图片说明

I have tried adding the following CSS in WordPress Customize

@media only screen and (max-width: 767px) {
    figure.alignleft, img.alignleft, figure.alignright, img.alignright {
        float:none;
    }
}

But feel I must be missing something. Ideally I just want the text to be below the image on mobile and tablet.

Thanks in advance.

The custom CSS code you added for desktop mode is affecting the elements on smaller devices and you need to override it:

Most likely, adding this to your CSS will help:

.list-category li {
  display: flex;
}
@media(max-width: 767px) {
  .list-category li {
    flex-direction: column;      
  }
  .list-category li > a {
    margin: 0 auto;
  }
  .list-category li .custom-content {
    width: auto;
    margin: 20px;
    padding-left: 0;
  }
}

If you don't want the images centered, remove the margin:0 auto rule.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM