I need my content to widen horizontally, so to the right, instead of to the bottom, as is default... I have written the following recursive jquery function to resize the page:
function resize_page( element )
{
var children = element.children();
var width = 0;
if( children.size() > 0 )
{
children.each( function()
{
width += resize_page( $( this ) );
} );
element.outerWidth( width );
return element.outerWidth();
}
return width;
}
It takes in the parameter in the form of $( "html" ).
My css for the page is as follows:
html, body
{
width: auto;
height: 100%;
padding: 0px;
margin: 0px;
white-space: nowrap;
overflow-x: visible;
overflow-y: visible;
font-family: Helvetica;
}
div#page_container
{
display: inline-block;
height: 100%;
min-width: 700px;
padding: 10px;
margin: 0px;
white-space: nowrap;
text-align: left;
}
Where div#page_container is the container div of the content to expand horizontally... While this works in Google Chrome, it doesn't in other browsers... Any ideas?
Thanks sincerely! :)
Piotr.