| | |||||
| ||||||||
| Website Development Development concepts, scripts, sponsors and affiliate programs. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| New Member Join Date: May 2004
Posts: 3
![]() | |
| |
| | #2 (permalink) |
| Senior Member Join Date: May 2004 Location: Toronto
Posts: 2,308
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Hey getsky, and welcome to the forums! Just fix up the back of her hair (smoothen it out into the background, etc.). You're going to place the content in a scrollbar on the empty space at the left, right? I think the final product should look quite nice. |
| |
| | THREAD STARTER #4 (permalink) |
| New Member Join Date: May 2004
Posts: 3
![]() | Thanks for the input. That is what I would like to do.......use a div tag for the content, that loads the content of each link, while the other elements (her picture on the right for example) remain static. I would also like the content to scroll if needed, but to look like it is scrolling up from behind the bottom color (please reference the attached graphic to see what I mean). How exactly would I achieve this effect..........to set the div tag to a certain width and height? But that raises another question..........if the div tag is set to a certain pixel width and height, and some users have a different resolution than I have designed for, will the content not scroll up above or below the bottom color graphic? ????: NamePros.com http://www.namepros.com/showthread.php?t=30995 Any input is greatly appreciated. Thanks. gretsky |
| |
| | #6 (permalink) |
| Account Closed Join Date: May 2004 Location: /etc/passwd
Posts: 2,178
![]() ![]() ![]() ![]() ![]() ![]() | so you dont want the content to load intill all the images are loaded? heres a code you may like: Code: <head>
<style>
#loading { position: absolute }
#content absolute; visibility: hidden }
</style>
<script>
function display_it()
{
document.all.content.style.visibility='visible';
document.all.loading.style.visibility='hidden';
}
</script>
</head>
<body onload="setTimeout('display_it()', 5000)">
<DIV ID="loading" STYLE="color: orange">
<h1>Loading, please wait...</h1>
</div>
<DIV ID="content">
Your content would go here
</div>
</body> |
| |