I am using the code from http://www.imaputz.com/cssStuff/bigFourVersion.html . How do i put another big table, 1 column, one row to the right?
This is the code I have done following below suggestions but it puts the second table below the top, scrolling table. If the second table could be next to the first scrolling table then I have success.
div.tableContainer {
clear: both;
border: 1px solid #963;
height: 800px;
overflow: auto;
float:left;
width: 11132px
}
div.tableTwo {
clear: both;
border: 1px solid #963;
height: 800px;
float:left;
overflow: auto;
width: 500px
}
<body>
<div id="tableContainer" class="tableContainer">
<table border="0" cellpadding="0" cellspacing="0" width: 11132px class="scrollTable">
<thead class="fixedHeader">
<tr class="alternateRow">
<th width="462" valign="top"><div align="center">
<p>Features</p>
<p> </p>
</div>
<div id="tableContainer" class="tableTwo">
<p>sdvfds</p>
<p>sfsf</p>
<p>sf</p>
<p>sdf</p>
<p>sdf</p>
<p>sdf</p>
<p> </p>
</div>
after adding suggestion below the new table shows up on the right of the existing table in dreamweaver but browsers still show it below the existing table
<div class="rightcol">
<div id="tableTwo" class="tableTwo">
<table border="0" cellpadding="0" cellspacing="0" width: 1000px">
<tr width="462" align="left" valign="top">
<div align="center">
<p>point 1</p>
<p>point 2</p>
<p>point 3</p>
<p>point 4</p>
<p>point 5</p>
<p>point 6</p>
</div>
You sound like you want to use a 2 column layout
in your css
in your html
Edit the widths in the css to however large you want.
Your document would look something like
Here is a full example of putting 2 example tables side by side on the page. You could try customising this if you are having difficulty. For a working example see http://jsfiddle.net/R3MBQ/ just make sure you stretch the result pane wide enough to see both of the tables. They may need shrinking to fit on the page side by side.