I am trying to make my wordpress HTML laid out as follows:
IMG paragraph 1 paragraph 1
IMG paragraph 1 ..
IMG
IMG
paragraph 2...
where all the IMG refer to a single image and the second paragraph starts below the image. Is that possible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, float your image left, and set paragraph 2 to clear. In your CSS:
Set the class on your image to
left_img, and on your paragraph,clear. Obviously, choose class names that fit with what you are trying to do… this is just an example.