| :: |
| Author |
Message |
euroman PR0

Joined: 21 Oct 2006 Posts: 81
|
Posted: Sun Jan 07, 2007 2:39 am Post subject: Adsense and Flashchat |
|
|
I have installed Flashchat from www.tufat.com
This tutorial: http://tufat.com/docs/flashchat/sample.html
What exactly is it? Is it possible to place the flash chat box on a page with normal html around it instead of it only beeing in its own window ? |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14403
|
|
| Back to top |
|
 |
euroman PR0

Joined: 21 Oct 2006 Posts: 81
|
Posted: Sun Jan 07, 2007 8:24 pm Post subject: Re: Adsense and Flashchat |
|
|
| Well they say I can just edit this page: www.mysite.com/chat/sample.php - the chat is already on that page - except I cant see it - it isn't loading. Do you have any Idea why by any chance ? |
Last edited by euroman on Sun Jan 21, 2007 4:18 pm; edited 1 time in total |
|
| Back to top |
|
 |
Peter77 phpBB SEO Team


Joined: 10 May 2006 Posts: 512 Location: Michigan
|
Posted: Sun Jan 07, 2007 10:15 pm Post subject: Re: Adsense and Flashchat |
|
|
Your chat is in -www.thegame-online.dk/chat/flashchat.php You could always use it in a IFRAME, like dcz mentioned, on any page.
| Code: | | <iframe src="http://yoursite.com/something/something" scrolling="no" width="100%" height="235" frameborder="0" allowtransparency="true" cellpadding="0"></iframe> |
|
|
|
| Back to top |
|
 |
euroman PR0

Joined: 21 Oct 2006 Posts: 81
|
Posted: Mon Jan 08, 2007 7:20 am Post subject: Re: Adsense and Flashchat |
|
|
Great thanks
Now I have only need to remove white space around chatroom and ad + remove scrollbar:
Any ideas?
Thanks |
Last edited by euroman on Sun Jan 21, 2007 4:50 pm; edited 1 time in total |
|
| Back to top |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Mon Jan 08, 2007 8:33 am Post subject: Re: Adsense and Flashchat |
|
|
hi
try this one
add this CSS codes exactly after:
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
| Code: | <style type="text/css">
body {
padding: 0;
margin: 0;
}
</style>
</head>
|
|
_________________ چهار گوش - طراحی وب - مجله طراحی وب |
|
| Back to top |
|
 |
euroman PR0

Joined: 21 Oct 2006 Posts: 81
|
Posted: Mon Jan 08, 2007 8:43 am Post subject: Re: Adsense and Flashchat |
|
|
| amir abbas wrote: | hi
try this one
add this CSS codes exactly after:
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
| Code: | <style type="text/css">
body {
padding: 0;
margin: 0;
}
</style>
</head>
|
|
Great Thanks  |
|
|
| Back to top |
|
 |
euroman PR0

Joined: 21 Oct 2006 Posts: 81
|
Posted: Mon Jan 08, 2007 10:46 am Post subject: Re: Adsense and Flashchat |
|
|
Now I need the chat to fit in the window:
Any ideas how to do that...? |
Last edited by euroman on Sun Jan 21, 2007 4:50 pm; edited 1 time in total |
|
| Back to top |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Tue Jan 09, 2007 7:34 am Post subject: Re: Adsense and Flashchat |
|
|
| amir abbas wrote: | hi
try this one
add this CSS codes exactly after:
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
| Code: | <style type="text/css">
body {
padding: 0;
margin: 0;
}
</style>
</head> |
|
i wrote it for you
if you want to remove that extra white space around your iframe, you must use that CSS code that i mentioned before
each page in default form has padding and margin. with that CSS rules you can remove that space and your iframe will fit to your browsers window
if you want to remove scrollbar forever, you can add this CSS rule:
overflow: hidden;
put it after :
margin: 0;
 |
_________________ چهار گوش - طراحی وب - مجله طراحی وب |
|
| Back to top |
|
 |
|
|