PDA

View Full Version : Images


camaro86us
05-05-2003, 12:47 AM
Ok I am new at creating webpages using html style. My problem is that I want to have a title along the top, text down the left side, and images and\or text next to the text that is on the left (with space between of course). When I try and do this it always makes the text on the left drop down under the image. I want to know how to make an image be put on the right side without messing with the info on the left. This is what the page looks like but I want images on the right.

ACJavascript
05-05-2003, 03:03 AM
Does each link get an image??

camaro86us
05-05-2003, 07:35 PM
No each link does not need an image. On each page there are links that I want on the left side and the right side there is nothing (really plan). So I wanted to be able to put images or something on the right side to spruce it up. However when I do that it messes with what I already have on the left side.

JustMe
05-05-2003, 07:41 PM
type this...

<div align="right>
<img src="mypic.gif>
</div>

scroots
05-05-2003, 07:47 PM
even better try this (JustMe you missed a closing quote after the file name and noe after the word right.)

<div align="right">
<img src="mypic.gif">
</div>


scroots

JustMe
05-05-2003, 07:57 PM
lol i always forget:D (>^.^)>

camaro86us
05-05-2003, 09:13 PM
Thanks I will Try that

pardicity3
05-05-2003, 11:26 PM
Or you could do it the css fashion (better in my view :)):

<head>
<style type="text/css">
<!--
.imagediv {
float: right;
}
-->
</style>
</head>
<body>
<div class="imagediv">
[images here]
</div>
[content here]
</body>

ACJavascript
05-06-2003, 04:50 PM
You could always just use tables like so.

----

<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td valign="top">
ALL YOUR LINKS
</td><td valign="top">
<center>
<img src="Image.gif">
</center>
</td></tr></table>


Happy Scripting :D