Building SE friendly IFRAME's

Discussion in 'HTML & Website Design' started by dave487, Sep 29, 2005.

  1. #1
    Simple solution if you want a scrolling IFRAME but need its content to be readable by spiders.

    use

    
    <style type="text/css">
    #fakeiFrame {	
    		width: 295px;
    		height: 125px;
    		overflow: auto;
    		border:1px solid #000000;			
    }
    </style>
    <div id="fakeiFrame">
    <?php
    include('frame.php3');
    ?>
    </div>
    HTML:
     
    dave487, Sep 29, 2005 IP
  2. ServerUnion

    ServerUnion Peon

    Messages:
    3,611
    Likes Received:
    296
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I have used this with sucesss before also. Thanks for the ipt...
     
    ServerUnion, Sep 29, 2005 IP