PinkIce
06-09-2003, 01:24 AM
HELP! how do i write a code so that there is an image and then a link underneeth it? i am working on my left frame of my website which is my menu frame and i cant get the code to be an image and then a link underneath it.... it always comes up as an image and the link is next to it! PLEASE HELP!!! u can post here or send me a message throught aim! my sn is angelicqt1990
the code i used was this:
<html>
<body>
<img src="my url for my pic" align="left">
<a href ="my link url" target="right">About me</a>
</body>
</html>
Try changing your code to this:
<html>
<body>
<img src="my url for my pic" align="left">
<br>
<a href ="my link url" target="right">About me</a>
</body>
</html>
Jrfan888
06-09-2003, 01:31 AM
Add a "<br>" after your <img> tag
:)
so it would be like this...
<html>
<body>
<img src="my url for my pic" align="left"><br>
<a href ="my link url" target="right">About me</a>
</body>
</html>
EDIT: oops...looks like bethy beat me to the post reply button...sorry....
PinkIce
06-09-2003, 01:43 AM
nope doesnt work the link comes up next to the picture on the side
i used this code
<html>
<body>
<img src="image url" align="left">
<br>
<a href ="link url" target="right">About me</a>
</body>
</html>
Jrfan888
06-09-2003, 03:57 AM
put another <br>
So it would be like this...
<html>
<body>
<img src="image url" align="left">
<br><br>
<a href ="link url" target="right">About me</a>
</body>
</html>
I tried it on my comp, and that works...:)
the problem is the ALIGN="LEFT" part in your IMG tag.
<html>
<body>
<img src="image url">
<br>
<a href ="link url" target="right">About me</a>
</body>
</html>
having the align property in an img tag will put the image in that direction relative to the next objects on the page.