Hi Let_Me_Be,
attached is the snapshot of page I am trying to achieve.
Hi Experts,
I posted a similar question earlier but didnt get any reply. What i am trying to achieve is 4 seperate square sections in the main content area of my webpage. Can someone please help me out, how to achive that?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
try this
<html xmlns="http://www.w3.org/1
<head >
<title>Admin</title>
<style type="text/css">
#divSquare1{
position:absolute;
top:20px;
left:18px;
font:face=arial;
}
#divSquare2
{
position:absolute;
top:20px;
left:168px;
font:face=arial;
}
#divSquare3
{
position:absolute;
top:72px;
left:18px;
font:face=arial;
}
#divSquare4
{
position:absolute;
top:72px;
left:168px;
font:face=arial;
width:800px;
}
</style>
</head>
<body>
<div id="divSquare1">Square1 </div>
<div id="divSquare2">Square2</div
<div id="divSquare3">Square3</div
<div id="divSquare4">Square4</div
</body>
</html>
Seems like the myriad of solutions posted here will all work, you'll just need to put your content in each of the divs we've labled. I put a border around my example, but I'd reccomend removing the border and adding each of those boxes you show with their individual headers. Do you have the code for the individual content areas worked out?
Hi jessegivy,
I got the table inside my body content with help from all you folks. I dont have the content that will go under these 4 sections.
These sections will contain charts, and now the second task is to put the text on top and below of these charts, as shown in the snapshot.
Should I open a new question for that?
I just put it in a container to set an overall width. In your case, the overall width is going to be defined by
div id="content". All you need is div class inner. You'll have to adjust the width and height to suit your needs since I don't know the width of div id="content". You could also set the width on .inner as a percentage, but unless you have an exact height set on div id="content" I wouldn't recommend changing the height on .inner to a %.
Again, sorry for the confusion!
Hi s8web,
This what I am getting. tables are showing up one below the other, instead of showing in 2 by 2 format.
This is what the margin is in the styles sheets I am using.
* content column */
#content {
width : 805px; /* add to other columns width for fullpage 990px */
}
/* content column */
#content {
float : left;
display : inline;
padding : 0;
margin : 0;
}
Change:
<div class="inner"></div>
<div id="container">
<div class="box"> </div>
<div class="box"> </div>
<div class="box"> </div>
<div class="box"> </div>
</div>
To:
<div class="inner"></div>
<div class="inner"></div>
<div class="inner"></div>
<div class="inner"></div>
With the css:
<style type="text/css">
.inner{
width: 180px;
height: 180px;
border: 1px solid #DDF;
background: #EEF;
float: left;
margin: 4px;
padding: 4px;
}
</style>
Business Accounts
Answer for Membership
by: Let_Me_BePosted on 2009-05-29 at 12:47:22ID: 24505567
Can you be more specific? How do you want them to be positioned? What size should they have (fixed or proportional)?