








|
To upload an image:
- Save the image on your computer
- Go to File Maintenance under Tools on QSM
- Click the 'Browse' button and open the image saved on your computer
- Click the 'upload' button and the image will be saved in your image directory
To insert an image:
- Select 'edit' for the page that you want to add the image to
- Click the 'Insert Image' button and select the image
- The code for the image will be placed at the bottom of the page text box
- Place the code anywhere in the page text box that you want
Example of the code for an image:
<img src="images/nameofyourimage.jpg">
Aligning an Image:
- Add ( align="left" ) to the code in between the < and >
- You can also do right, center, top, middle, and bottom
Example of the code for an image aligned to the left:
<img src="images/nameofyourimage.jpg" align="left">
Back
|