I'm green, and i'm stooped. I have a picture on the left with alot of white space on the right, and would like to add a header and a couple of paragraphs there. What should i use to move it around vertically and horizontally. Appreciate the help
Isak is right, what you're looking for is to float the image -- but without seeing the code, content and image, we really can't tell you a whole lot more than that.
I believe the OP was asking for next to, not over. NOT that placing text over a image that way is EVER a good idea given how it pisses on the texts legibility, prevents the use of dynamic size and/or results in broken layouts, etc, etc... Particularly bad being removing text from flow with the APO -- at the very least that should either be done as a background-image (since in that case it doesn't look like content and as such has NO business in a IMG tag) or with a negative margin so the text remains in flow.
Here are the guideline how to put header and content beside the left image. First create one class as below and put the CSS in .style file. img { float:left; padding: 0 15px 15px 0px; } Now beside the left image please put your header image and content.
<div class="image-wrap"> <img src="YOUR-IMAGE.png" alt="Alternative text" /> <div class="image-meta"> <p class="image-title">Image Title</p> <p>Text about the image</p> </div> </div> and the CSS... .image-wrap { display:inline-block; } .image-wrap img { float:left; } .image-meta { float:right; } .image-title { font-weight:bold; } You may need to play around by adding width's to ".image-wrap img" and ".image-meta", but this solution is the best I can do without actually seeing your code.