Author |
Message |
rjms
Regular


Joined: Feb 10, 2012
Posts: 56
|
Posted:
Tue Feb 21, 2012 6:52 am |
|
Hello I am now using this code to display a side block with my TeamSpeak on it, since the normal TS modules do not work anymore with tsviewer.com I was forced to do this, the code I got from a developer on this site.
Code:
<?php
if ( !defined('BLOCK_FILE') ) {
Header('Location: ../index.php');
die();
}
$content = '<br />';
$content .= '<div>';
$content .= '<iframe name="inlineframe" src="http://www.tsviewer.com/promotion/dynamic_sig/sig.php/clan160x283_cod4/984256.png"></iframe></div>';
$content .= '<noframes>Your browser doesnt currently support inline frames.</noframes>';
$content .= '</div>';
?>
|
But is shows weird border dimensions, I have a scrollbar to see whole banner, when i add fixed width and height to it nothing changes, when i paste the code in my chrome it displays just fine.
Anyone can see what I am doing wrong here ? |
_________________ Using RavenNuke 2.5 Freshly installed on a RHE Dedicated box. |
|
|
 |
Raven
Site Admin/Owner

Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Tue Feb 21, 2012 12:57 pm |
|
Have you also contacted the developer? |
|
|
|
 |
rjms

|
Posted:
Tue Feb 21, 2012 1:04 pm |
|
nvm fixed it  |
|
|
|
 |
Palbin
Site Admin

Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania
|
Posted:
Tue Feb 21, 2012 1:26 pm |
|
Please share what you did so that it may help others. |
_________________ "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." — Brian W. Kernighan. |
|
|
 |
rjms

|
Posted:
Tue Feb 21, 2012 2:21 pm |
|
I did this:
Code:
<?php
if ( !defined('BLOCK_FILE') ) {
Header('Location: ../index.php');
die();
}
$content = '<br />';
$content .= '<div>';
$content .= '<iframe name="inlineframe" src="http://www.tsviewer.com/promotion/dynamic_sig/sig.php/clan160x283_cod4/984256.png/" width="160" height="283"></iframe></div>';
$content .= '<noframes>Your browser doesnt currently support inline frames.</noframes>';
$content .= '</div>';
?>
|
probably forget a \  |
|
|
|
 |
Raven

|
Posted:
Tue Feb 21, 2012 5:48 pm |
|
Okay, I see 2 closing </div> and only 1 opening <div> . Whassup? |
|
|
|
 |
rjms

|
Posted:
Thu Feb 23, 2012 3:29 am |
|
if i put it to 1 only it is not showing LOL |
|
|
|
 |
montego
Site Admin

Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Thu Feb 23, 2012 6:41 am |
|
If you use the following, does it work?
Code:
<?php
if ( !defined('BLOCK_FILE') ) {
Header('Location: ../index.php');
die();
}
$content = '<br />';
$content .= '<div><div>';
$content .= '<iframe name="inlineframe" src="http://www.tsviewer.com/promotion/dynamic_sig/sig.php/clan160x283_cod4/984256.png/" width="160" height="283"></iframe></div>';
$content .= '<noframes>Your browser doesnt currently support inline frames.</noframes>';
$content .= '</div>';
?>
|
|
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
 |
rjms

|
Posted:
Fri Feb 24, 2012 2:15 am |
|
No need to get another block... it allready works thanks for the heads up though |
|
|
|
 |
montego

|
Posted:
Fri Feb 24, 2012 6:57 am |
|
|
|
 |
Raven

|
Posted:
Fri Feb 24, 2012 4:56 pm |
|
rjms,
Please try Montego's code and then reply back. Thanks! |
|
|
|
 |
rjms

|
Posted:
Sat Feb 25, 2012 10:12 am |
|
Just did and also works, need i replace an allready working block with it? |
|
|
|
 |
Raven

|
Posted:
Sat Feb 25, 2012 1:58 pm |
|
In this case I highly recommend it because your way is not valid xHtml nor Html. Montego's is  |
|
|
|
 |
rjms

|
Posted:
Sat Feb 25, 2012 3:35 pm |
|
Consider it done  |
|
|
|
 |
|