3 league trny Calendar on main page

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   3 league trny Calendar on main page
Damien
CZ Newbie
Damien has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Aug 01, 2003
0.00 posts per day
Posts: 2
Points: 108
   

3 league trny calendar.....
Hello.....Our lobby is shared by 3 leagues and we would like to list the trny calendar of all 3 on our main page. I have tried but all i can get is one centered and I need 3 across. [ Register or login to view links on this board. ] is an example of what I would like to do. My iframe width is 500 but I could enlarge it some to accommodate.

Thank you very much,
Damien



Back to top Reply with quote
#2   
Kelly_Hero
PayPal Donation
CZ Revered Member
 Codezwiz Site Donator
Kelly_Hero has been a member for over 20 year's 20 Year Member
usa.gif southcarolina.gif
Occupation: Web Developer
Age: 59
Gender: Female
Website:
Status: Offline
Joined: Aug 20, 2003
0.50 posts per day
Posts: 3765
Points: 351,412
   
Here is how I did it when our league was sharing a room with two other leagues.

You will need 4 separate pages to complete this - 1 for each league's tourney calendar and 1 to display them all. This page is the one that gets pulled into your iframe on the main page.

Ex. League1.html, League2.html, League3.html and calendars.html

Each league calendar page should contain the following code in the <head> section:

<style type="text/css">
iframe {position: absolute; top: -600px;}
</style>


and this code in the <body> section:


<iframe
src="http://www4.igl.net/cgi-bin/tourney/gencalendar.cgi?path=LEAGUENAME"
height="2500" width="180" frameborder="0"></iframe>


Then, on your calendars.html page, create a 3-cell table to house each of the league calendar iframes:

<table  align="center" border="0" cellpadding="0" cellspacing="0" width="600">
<tr>
<td valign="top"><iframe src="league1.html"
height="300" width="200" frameborder="0" scrolling="yes"></iframe></td>
<td valign="top"><iframe src="league2.html"
height="300" width="200" frameborder="0" scrolling="yes"></iframe></td>
<td valign="top"><iframe src="league3.html"
height="300" width="200" frameborder="0" scrolling="yes"></iframe></td>
</tr>
</table>


Then pull calendars.html into your iframe on your main page and that should do it!

Post back if you have any questions or need help.

Kelly


Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum