How would I do that. I would be reluctant to add it to the image file because it would be good the have it resize if needed. Regarding the image, I have found the css to modify it but am unable to see any differences when margin and padding are applied to it. Below is what shows up in the css code regarding images.
/* Begin Images */
p img {
padding: 4px;
max-width: 100%;
}
/* Using ‘class=”alignright”‘ on an image will (who would’ve
thought?!) align the image to the right. And using ‘class=”centered’,
will of course center the image. This is much better than using
align=”center”, being much more futureproof (and valid) */
img.centered {
display: block; margin-left: auto; margin-right: auto;
}
img.alignright {
float:right; margin:0 0 4em 4em;
}
img.alignleft {
float:left; margin:0 4em 4em 0;
}
.alignright {
float: right;
}
.alignleft {
float: left
}
/* End Images */