Log in

View Full Version : Unable to add photo where i would like it.



theremotedr
02-25-2012, 01:12 AM
Hi,
I have been trying for the last hour or so to achieve a small task but cant get it correct no matter what i do.
I have a web page with a form that needs to be completed but even though it is very straight forward some people just cant complete it at all :eek:
I thought i would have the form that needs to be completed on the left of the web page and also an example of what it should look like once completed on the right on the web page.
No matter what i do with the code from my host i can only get it to go below the form & not to the right of the form ?
This is where i would like some help to achieve this task if i may.
I have supplied a file of the web page in question & i have supplied a screen shot of what i would like the file to then look like once the extra piece of code has been applied to the existing code supplied in the file.

Here is the code for the photo i wish to be used on the right,
http://i670.photobucket.com/albums/vv62/ipbr21054/MY%20WEBSITE/COMPLETEDFORMEXAMPLE.jpg

jscheuer1
02-25-2012, 05:57 AM
Something like:


<!DOCTYPE html>
<html>
<head>
<title>contact me page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>

body { background-image: url('photogallery/WEB%20BACKGROUND.jpg');
background-repeat: repeat; background-position:center }
p, h1, div, table, td {
text-align: center;
}
p {
margin: 5px 0 2px 0;
}
h1 {
font-size: 48px;
margin: 5px;
}
table {
width: 860px;
margin: auto;
}
td {
vertical-align: top;
}
</style>
</head>
<body>
<p>
<iframe src="http://free.timeanddate.com/clock/i26bcmsm/n136/fs28/tct/pct/ftb/tt0" frameborder="0" width="723" height="36" allowTransparency="true"></iframe>
<h1>Contact Me Page</h1>
<div>
<table cellspacing="0" cellpadding="15" border="0"><tr><td>Please Enter Your Request:<br><iframe width="400" height="524" frameborder="0" src="http://www.foxyform.com/form.php?id=219861&sec_hash=481ef9b929c"></iframe><br><a style="font:8px Arial;color:#5C5C5C;" href="http://www.foxyform.com">foxyform.co</a></td><td>Example:<br><img src="http://i670.photobucket.com/albums/vv62/ipbr21054/MY%20WEBSITE/COMPLETEDFORMEXAMPLE.jpg" alt="original image" title=""></td></tr></table>
</div>
</body>
</html>

theremotedr
02-25-2012, 02:04 PM
Thanks i will give it a try.