Maverick1024 All American 4866 Posts user info edit post |
Hi. I was just curious as how to be able to control where you put an image on your website using HTML. I want to put a poll on my website in the bottom lefthand corner, but everytime I copy and paste the code to my webpage editor it puts it in the top lefthand corner. Here's the code below
<script src="http://www.coolwebtoys.com/Toy.ashx?ut=90b872b0" type="text/javascript"></script> <noscript><a href="http://www.coolwebtoys.com/" target="_blank">CoolWebToys</a></noscript> <div class="cwt_90b872b0_footer"><a href="http://www.coolwebpoll.com" target="_blank"><img src="http://www.coolwebtoys.com/_Images/cl.gif" alt="Online Poll" /></a><a href="http://www.coolwebtoys.com/Toys/l/CoolWebpoll/" target="_blank">Online Poll</a> from <a href="http://www.coolwebtoys.com" target="_blank">CWT</a></div>
I need to know what code to type in and what punctuation/location I should place it. Any help would be greatly appreciated! 9/13/2006 1:22:26 PM |
sarijoul All American 14208 Posts user info edit post |
jesus google christ 9/13/2006 1:25:33 PM |
Maverick1024 All American 4866 Posts user info edit post |
tried that. thought some of you tech people could be a little more specific though 9/13/2006 1:27:42 PM |
DonMega Save TWW 4201 Posts user info edit post |
<script src="http://www.coolwebtoys.com/Toy.ashx?ut=90b872b0" type="text/javascript"></script> <div class="cwt_90b872b0_footer" style="position: absolute; bottom: 0px; left: 0px;"><a href="http://www.coolwebpoll.com" target="_blank"><img src="http://www.coolwebtoys.com/_Images/cl.gif" alt="Online Poll" /></a><a href="http://www.coolwebtoys.com/Toys/l/CoolWebpoll/" target="_blank">Online Poll</a></div>
it will now always be at the very bottom-left of the screen, you can adjust the pixels to your liking (you can also do it from the top if you prefer) 9/13/2006 1:38:03 PM |
Maverick1024 All American 4866 Posts user info edit post |
Don, thanks for the advice, but for some reason it's still in the top left. Don't worry about it if you can't figure it out though, I can survive without it. 9/13/2006 1:57:20 PM |
DonMega Save TWW 4201 Posts user info edit post |
<style> iframe { position: absolute; bottom: 0px; left: 0px; } </style> <script src="http://www.coolwebtoys.com/Toy.ashx?ut=90b872b0" type="text/javascript"></script>
i tested it this time, i think that will work 9/13/2006 2:45:13 PM |
DonMega Save TWW 4201 Posts user info edit post |
??? 9/14/2006 10:04:22 AM |
Maverick1024 All American 4866 Posts user info edit post |
sorry for the delay... yeah that worked man. thanks a bunch i really appreciate it 9/14/2006 12:13:51 PM |