[ARCHIVED] Arranging Graphics and Text on a Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello!
I am not finding exactly what I am trying to figure out. What I am wondering is if there is a way to create a "text box" similar to a PowerPoint slide or Google Slide and have graphics intermingled with the text? Perhaps in HTML code? My vision is to have a title, below that and to the left a graphic and then on the right side of the page the text. I considered using a PNG of a slide, but that removes the accessibility by making the text into an image. Perhaps I need to rethink this and it isn't possible.
Thank you!
Jen S.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I've done a similar arrangement by adding a table, positioning text and images in the different cells, and then making the borders invisible. Maybe that would work for you?
Good luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @schjen ...
Would you be open to something like this?
All I did here was inserted an image at the start of the top paragraph, then I clicked on the image and right-aligned it to the page. Then, I left-aligned it to the page. The text kind of wraps around the image. And, if you are familiar with HTML, you could instead just add this bit of code to the <img> tag:
style="float: left;"
Using tables might be okay in some instances for designing page layout, but tables are really meant more for holding/display data rather than deciding where content should be placed on a page. And, there are sometimes accessibility concerns with tables. So, you'll want to keep that in mind as well.
Hope this will help a bit.
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.