Can anyone help me. I’m tying to make a paragraph move about a centimetre to the right of an image (just to give it a bit of a space). Please someone point me in the right direction of by this doesn’t work.
<div id="bodycontent">
<h2>Welcome to this Website</h2>
<p><img src="divers-circle.jpg" width="200" height="162"
alt="A circle of divers practice their skills"/>
</p>
[COLOR="Red"]<p class "leftpadding">I hope you Enjoy this Website and helps you to have a better day !!</p>[/COLOR] </div> <!-- end of bodycontent div -->
You just have to float the image to the left of the paragraph:
<div id="bodycontent">
<h2>Welcome to this Website</h2>
<img src="divers-circle.jpg" width="200" height="162"
alt="A circle of divers practice their skills"> <!-- no need to put the img in a paragraph -->
<p>I hope you Enjoy this Website and helps you to have a better day !!</p>
</div> <!-- end of bodycontent div -->
img {float:left; display:block; margin-right:40px;} /* change the 40px to what you need */
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
img{
margin: 0 2% 0 0;
float: left;
}
p{
font-style: italic;
}
/*]]>*/
</style>
</head>
<body>
<div id="bodycontent">
<h2>Welcome to this Website</h2>
<p>
<img src="divers-circle.jpg" width="200" height="162" alt="A circle of divers practice their skills"/>
I hope you Enjoy this Website and helps you to have a better day !!
</p>
</div>
</body>
</html>
This definitely worked :-
img imghome {float:left; margin-right:40px;}
However if I try this then the text appears to the bottom right of the image. Anyone know why please. I’m trying to introduce class=“imghome” into it to make the img definition more specific :-
<div id="bodycontent">
<h2>Welcome to this Website</h2>
<img class="imghome" src="divers-circle.jpg" width="200" height="162" margin:40px
alt="A circle of divers practice their skills"/>
I hope you Enjoy this Website and helps you to have a better day !!
</div> <!-- end of bodycontent div -->