• Why when I tell a photo to be on the right it always ends up on the left no matter if I choose the right button or not? So now every photo I post ends up on the left. Take a look https://www.yourtravelgossip.com/. I used to be able to make them go to the right but no more.

Viewing 1 replies (of 1 total)
  • Hi,
    This styling is pushing all photos to the left.

    .PostContent img {
      border: 1px solid #495B6B;
      float: left;
    }

    I see where you tried to put align right on the photo. But what people don’t know is that you have to write styling for that, too. Many themes have it, but many don’t.

    So you can edit CSS (under Appearance) and changing the above to float right instead of left if you always want them on that side, or you could try something like the code below to only use it on some images.

    .PostContent img.alignright  {
      float: right;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Photos – Uploader problems?’ is closed to new replies.