Hi guys,
I need some help here.
COuld someone show me how to line up the information next to the image
http://www.mridang.info/gallery/album.html
I have two little images below which there is a line of text in gray and a line of text in white. The line of text should be aligned beside the image while the line of text in white will remain where it is. How do I line up the gray text beside the image.
Any help from you CSS gurus is greatly appreciated.
You mean like this: <p
You mean like this:
Hi ClevaTreva, I did as you
Hi ClevaTreva,
I did as you said and the text appeared beside the image but the text is bottom aligned in relation to the image. How do I middle align it vertically?
Give the paragraph a line
Give the paragraph a line height the same as the height of the image and then set the vertical align to middle.
Either that or float the image to the left with the html as it was before I suggested that last change, here's the css:
.image{
float:left;
display:inline;
margin-right:10px;
}