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
trying to easily add banners to my site please help
Old 04-20-2006, 10:26 AM trying to easily add banners to my site please help
alc
Novice Talker

Posts: 9
Trades: 0
Hello
This is my first post here WT is one of the best places for info on web site design my question I am very new to web site design and making money online I am tring to make a portal site to fill with affiliate banners and get into adsense and what ever I can get in on I only know the basics using frontpage 2003 is there any way to have a page or script were I can just copy paste all my banners or links and add them one after the other in that page and I will add a section on the portal page so the banners will rotate in a marque type and also another section were the banners will fade from one banner to the next banner.
I would appreciate any help and thanks.
alc is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-20-2006, 10:52 AM Re: trying to easily add banners to my site please help
cbrunt's Avatar
Novice Talker

Posts: 12
Trades: 0
you can always use photoshop that is 1 of the best programs for visual effects i think
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
cbrunt is offline
Reply With Quote
View Public Profile
 
Old 04-20-2006, 01:01 PM Re: trying to easily add banners to my site please help
goldingh99's Avatar
Average Talker

Posts: 20
Trades: 0
you can use javascript to rotate banners

this will go in the <head></head> tags

HTML Code:
<script language="Javascript" type="text/javascript">
	<!-- Hide script from old browsers

	adImages = new Array("image1.jpg","image2.jpg","image3.jpg") 
	adURL = new Array("link1.com","link2.com","link3.com") 
	thisAd = 0
	imgCt = adImages.length

	function rotate() {
		if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
			document.adBanner.src=adImages[thisAd]
		  	setTimeout("rotate()", 3 * 1000)
	  	}
	}

    function newLocation() {
		targetWindow = window.open("http://" + adURL[thisAd],"","");
     }

	// End hiding script from old browsers -->
	</script>
then have this in the body section
HTML Code:
<body onload="rotate()">
<a href="javascript:newLocation()">
	<img src="image1.jpg" width="173" height="230" name="adBanner" alt="Ad Banner" border="0" /></a>
just substitue the image... with the name of you image and link... with the hyperlink for where you want the image to take the user

also you can easily use more images by adding a comma (,) then putting the nex images name in quotes ("") before the end parenthesis ()). i.e. ..."image3.jpg", "image4.jpg") and then you can do the same with the links

hope this helps

Last edited by goldingh99; 04-20-2006 at 01:15 PM..
goldingh99 is offline
Reply With Quote
View Public Profile
 
Old 04-20-2006, 06:02 PM Re: trying to easily add banners to my site please help
alc
Novice Talker

Posts: 9
Trades: 0
Thanks for reply is there a way of setting up a seperate page like a type of script or data base were I can just have all my banner codes and whenever I get a new banner I just go to that page and add the new banner to the end of the list and all marque I set up on index page will go to that page and display whatever banners are their if there is no way of doing this I will try to insert the above code thanks again.
alc is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to trying to easily add banners to my site please help
 

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 0.39644 seconds with 12 queries