 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
Riquelme1111
Joined: 22 Nov 2007 Posts: 2
|
Posted: Thu Nov 22, 2007 4:18 pm Positioning tables |
|
|
|
Hello people.
I've done some basic HTML in the past but my knowledge is patchy to say the least. In fact I don't even really know the basics to be honest.
But anyway, my problem is as follows.
I'm making a simple html page which will serve as a front page. It is to have a logo at the top and then a few links at the bottom e.g. login, help, FAQ etc.
It has a background image stylesheet and this is all it requires.
I want it to look as simple as possible. I can't figure out how to positon the links at the bottom of the page, however. I've tried to create a table with valign="bottom" etc but the links keep displaying at the top of the page.
I've managed to get the links to work by creating a div at the bottom of the page, which gets the desired effect but the fact I cannot get a simple table to go to the bottom of a web page is infuriating me.
Help would be greatly appreciated and I am a beginner so please don't use too much jargon  |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8301 Location: Castle Pines North, CO USA
|
|
Riquelme1111
Joined: 22 Nov 2007 Posts: 2
|
Posted: Mon Nov 26, 2007 10:21 am |
|
|
|
I've got some code but to be honest I just want to start from scratch and have a simple table at the bottom.
Thanks  |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8301 Location: Castle Pines North, CO USA
|
Posted: Wed Nov 28, 2007 3:11 pm |
|
|
|
So are you wanting a header / nav/content / footer
| Code: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Untitled 1</title>
<style type="text/css">
table
{
border-collapse: collapse
}
</style>
</head>
<body>
<table style="width: 100%">
<tr>
<td> </td>
</tr>
</table>
<table style="width: 100%">
<tr>
<td style="width: 25%"> </td>
<td style="width: 75%"> </td>
</tr>
</table>
<table style="width: 100%">
<tr>
<td> </td>
</tr>
</table>
</body>
</html> |
or something else? it always helps to see the source code - at least to give us an idea
_________________
Corey
Toll Free Fax Numbers | Mile High Merchant Accounts |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|
 |
|
|
|
|
|
|
|