How do you get words to show up at the bottom instead of beside a left-aligned photo? [closed]

You could turn off the alignleft floating for images when on mobile:

Add this to your style.css:

@media screen and (max-width: 480px) {
  img.alignleft {
    float: none;
  }
}

Basically it’s saying if the screen is less than 480 px wide, remove float left (ie no float) from images that are aligned left. It leaves them on their own line.