I want to work on profiles for my pets. I'm thinking I want to draw a picture of them and have the image set to the side of the page. How can I do this (or something similar to it)?
, do you mean like a background picture? or an image in the text?
you can make a separate div containing the image and then position it, like this:
{
position:absolute;
top:XXpx; left:XXpx;
height:XXpx; width:XXpx;
background:url(IMAGE URL) no-repeat}
if you don't want it to scroll with the page, you could just change 'absolute' to 'fixed'. then you have to put the following outside the style tags:
<div id="pic"></div>
but without the asterisks (angle brackets don't work right here i guess) and replacing 'pic' with whatever you choose to call the div, if you give it a different name.