Utilizing Space on a webpage
I am creating a site and have to use the following graphical layout that can be seen at this link: http://www11.brinkster.com/ksuchoc/Sample/Sample.html
I am not concerned about the left bar what i am concerned about is being able to use as much of the white space for text as possible. Having the curved blue line at the bottom eats a lot of space up, I would like to either cut up the graphic or something to that effect so that I can utilize as much of the white space as possible, although the bottom graphic is actually 3 graphics side to side. What can i do?
Help is greatly appreciated.
Samples would be good.
Thanks to all that reply.
Re: Utilizing Space on a webpage
Hi,
What you could use is CSS to position the wite box to the right of the screen
VB Code:
.HT_Override {
position:relative;
width:500px;
height:500px;
float:right;
border:none;
margin:0px 0px 0px 0px 0px;
padding:0px 0px 0px 0px;
}
then simply override the body to give you the background.
VB Code:
.HT_Body {
position:relative;
background-image:url(image path);
}
this would work, adn it would stay static on all layouts (should)
Try this adn se wht you get.
hope this helps
Kai
Re: Utilizing Space on a webpage
Or save yourself the headache and make the curve smaller. Make it more subtle, just two curves along the side should do fine, with the bottom part completely straight.
OR, place your footer text in that space being 'wasted' with your text in the rest of the area.
Re: Utilizing Space on a webpage
I am going to try and do the css and hope that works. I wish it was that easy Mendhak.
Thanks for your suggestions.