• Welcome to ForumKorner!
    Join today and become a part of the community.

Floating Issue

SGT.Code

Active Member
Reputation
0
why not make a table with 2 colums it would be allot easyer m8

Code:
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>

would look like this:
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
 

OliverE

Power member.
Reputation
0
Tables are a very old fashion way of making websites.
Your issue with the fact that you need to set the footer to clear both the left and right columns.
To do this add the following code to your footer style.

Code:
clear:both;

That should do it.
Let us know if you have any issues.
 

SGT.Code

Active Member
Reputation
0
well thats all i learnt with my lecturer all i wanted to do was use dreamwiever but every lesson was in notepad with html :(
 

OliverE

Power member.
Reputation
0
Tables are a fundamental part of web design, if you need to to create a proper table, say to log data, or create a forum ( :D ) then yes Tables would be suitable.
Using tables to create your layout, ie. put the header in one cell, left column in another, its a big no no in the current state of the industry. It can be done, but its not professional.
Divs are probably hard to create if you dont know how to but when maintaining and updating your websites information they are much easier.
 
Top