Hi
Hi
This is for a Iframed Height hack I am using it doesn't work for IE though
My site is a testing grounds so if i remove thing. thats why.
View it on my site http://makecg.com
Code
<style type='text/css'>
#content .container { padding: 0; }
</style>
function iframer()
{
// get width of #content
frame_x = $('#content').width();
// get height of #menu
frame_y = $('#menu').height();
// apply height and width
$('#iframed').css('width', frame_x);
$('#iframed').css('height', frame_y);
}
$(document).ready( function() { iframer(); } );
$(window).resize( function() { iframer(); } );
You know what guys, this whole code on forums is a little buggy. here is the code in a txt file
I meant to say this here but posted it on my other thread OOPS~
Also in Exhibition Format place it as ( No Thumbs, No Captions )
Because you can't have any < p> inbetween the code it will automatically add those if you choose other ones.
Great fix, surprised no one has picked up on this. Thanks!
Is there a way to have the width fixed so that there is no horizontal scroll bar?
This thread has been closed, thank you.