Hello,
I have installed PHPNuke and decided I wanted a flash navigation menu. I made a flash navigation menu and made a HTML document with it in it, "navigation.html".
Then I created a block with the following code in it to iframe the "navigation.html"
PHP Code:
<?php
if (eregi("block-Block_Creator.php",$PHP_SELF)) { Header("Location: index.php"); die(); } $content = "<div align=\"center\">"; $content .= "<iframe name=\"inlineframe\" src=\"navigation.html\"width=\"120\" height=\"275\" target=\"_parent\" scrolling=\"no\" frameborder=\"no\">></iframe><noframes>"; $content .= "Your browser doesnt currently support inline frames.</noframes></div>"; ?>
This works all fine and dandy, but as you can see in the picture below, when I click a link in the navigation menu, it goes inside the iframe. As I am pretty sure that nuke has no frames, IE "rightframe" or whatever, how would I get it so it would load on the entire page?
Then when I click it it does this...
Can anyone fix this? I want it to load on the whole page.
Please help?
Thanks!
|