Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Scroller Posistion and SQL input.
Old 10-17-2005, 03:14 PM Scroller Posistion and SQL input.
scottsgameroom's Avatar
Super Talker

Posts: 101
Trades: 0
I am trying to place a scroller over the top of an image. Is this possible? I would also like the scroller to be able to pick up what needs to put said in the scroller from a MYSQL database.

Is it possible

A) to define a place on an image of where you want the scroller to be like you can do with hot linking.

B) to take text from a MYSQL database and place it in the scroller

Look forward to your views
scottsgameroom is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 10-18-2005, 02:27 PM
funkdaddu's Avatar
Web Design Snob

Posts: 635
Trades: 0
By scroller, do you mean a marquee?
You could put the marquee in a DIV and position it over an image.
Putting the MySQL data in the marquee would work fine... just write the content in between the tags like this: <marquee>Write your stuff here!</marquee>
funkdaddu is offline
Reply With Quote
View Public Profile Visit funkdaddu's homepage!
 
Old 11-10-2005, 12:46 PM
scottsgameroom's Avatar
Super Talker

Posts: 101
Trades: 0
Would you be able to provide a sample so i coudl see it working using a div?
scottsgameroom is offline
Reply With Quote
View Public Profile
 
Old 11-10-2005, 12:50 PM
funkdaddu's Avatar
Web Design Snob

Posts: 635
Trades: 0
Code:
<div><marquee>Write your stuff here!</marquee></div>
There are also samples on the page I linked to.
funkdaddu is offline
Reply With Quote
View Public Profile Visit funkdaddu's homepage!
 
Old 11-10-2005, 02:57 PM
scottsgameroom's Avatar
Super Talker

Posts: 101
Trades: 0
I understadn this but can u show me how to put it for example if i have a banner in a table how i can posistion the scroller at the bottom right of the image?
scottsgameroom is offline
Reply With Quote
View Public Profile
 
Old 11-10-2005, 03:15 PM
funkdaddu's Avatar
Web Design Snob

Posts: 635
Trades: 0
You want it over top of an image? I'd have to see how your image is placed, placement could be problematic. Do you have some sample code?
funkdaddu is offline
Reply With Quote
View Public Profile Visit funkdaddu's homepage!
 
Old 11-11-2005, 05:35 AM
scottsgameroom's Avatar
Super Talker

Posts: 101
Trades: 0
Code:
<table width=700 cellspacing=0 cellpadding=0 bordercolor=black border=1>

<tr><td><img src="banner.gif"></td></tr>
</table>
This is the basic layout of it!
scottsgameroom is offline
Reply With Quote
View Public Profile
 
Old 11-11-2005, 11:09 AM
funkdaddu's Avatar
Web Design Snob

Posts: 635
Trades: 0
I don't have IE6 to test it on, but how about this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

	<head>
		<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
		<title>Untitled Page</title>
		<style type="text/css" media="screen">
			<!--
#containDiv {
	width: 700;
	border: 1px black solid;
	position: relative;
}

#containDiv marquee {
	position: absolute;
	bottom: 0px;
	right: 0px;
	z-index: 10
	}

-->
		</style>
	</head>

	<body bgcolor="#ffffff">
		<div id="containDiv"><img src="(EmptyReference!)" alt="" height="50" width="700"><marquee>Write your stuff here!</marquee></div>
	</body>

</html>
You can put the div in a table if you want, or just use the containDiv
funkdaddu is offline
Reply With Quote
View Public Profile Visit funkdaddu's homepage!
 
Reply     « Reply to Scroller Posistion and SQL input.
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 2.04988 seconds with 12 queries