@slynch3 To code width into your canvas page, you have to use the "style" attribute (also known as inline CSS) for any given tag (piece of content) in your html editor. For example, if you wanted to edit how wide the text on your page appears:
<p style="width: 80%;">This is my content</p>
This can really come in handy with using images in tables--sometimes those can get wonky in Canvas. Try this after you have inserted an image into a cell:
<table>
<tbody>
<tr>
<td><img id="500347" style="display: block; margin-left: auto; margin-right: auto; width: 100%;" src="https://nwic.instructure.com/courses/4493/files/500347/preview" alt="teddy bear" data-api-endpoint="https://nwic.instructure.com/api/v1/courses/4493/files/500347" data-api-returntype="File" /></td>
</tr>
</tbody>
</table>
Obviously you have to read in between the lines if there is already a lot of coding, but it is doable. Additionally, make sure to always put a semi-colon at the end of your width percentage, as with all descriptors within an attribute.
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.