• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Please review my website: CFL Zone.com

Instead of the IFRAME, use the following CSS definition for a DIV:
Code:
.iframe_mimic {
     overflow:scroll;
     color:#COLOR_HERE;
}

.iframe_mimic A:Link, .iframe_mimic A:Active, .iframe_mimic A:Visited {
     color:blue;
     text-decoration:underline;
}

.iframe_mimic A:Hover {
     color:red;
     text-decoration:none;
}

And here's the DIV where the IFRAME should go:
Code:
<div class="iframe_mimic">#CONTENT HERE#</div>

If you used the iframe so you could include an extrenal file, redo the file in PHP and instead of #CONTENT_HERE# in the DIV TAG, put instead:

Code:
<? include("PATH/TO/FILE"); ?>
 
Back
Top