Jumping tables?

Soldato
Joined
18 Oct 2002
Posts
18,296
Location
Brighton
I'm building up a site for a friend of mine and i've come across this really weird problem.

There is a central table which is a fixed 750px wide and 100% tall but some of the pages jumped the table a couple pixels right and some are fine, maybe its just firefox but its a really weird issue and i can't see any differences in the code to cause this!!

The site: http://tai.sp00ny.co.uk/

Anybody throw up some ideas please?!?!? :D
 
Yea IE doesn't seem to have any issues with it, it's just firefox from my end but i can't see what on earth is causing it!
 
What would i use instead of tables?

Sorry to sound dumb but i'm only just getting back in to doing some web stuff.
 
Aslong as your happy john, thats all i care about
love2.gif
:D
 
I've noticed that firefox and IE are rendering the paragraph spaces a lot bigger , is there anything i can do to stop this?
 
Didn't make any difference!

My css sheet:

Code:
#header {
		background:#fff;
		   width:750px;
		   margin:2px auto 0;
		   position:relative; 
		   } 
body 	{ text-align: center; }
		
		
#content {
		background:#fff;
		   width:730px;
		   margin:0 auto 0;
		   border:10px solid #fff;
		   position:relative;
		   padding: 0px;
		   }
			
body 	{
		background-image: url(bg_tile.jpg);
		margin:5;
		text-align: left;
		}

.style1 {
		font-family: Verdana;
		font-size: 10px;
		color: #FFFFFF;
		}
		
.style2 {
		font-family: Verdana;
		font-size: 10px;
		color: #545454;
		text-align: left
		}

.class1	a:link {color: #545454}
.class1 a:visited {color: #545454}
.class1 a:hover {color: #fff}
.class1 a:active {color: #fff}
 
Last edited:
Code:
p 		{
		padding: 0;
		margin: 0
		}

#header {
		background:#fff;
		   width:750px;
		   margin:2px auto 0;
		   position:relative; 
		   } 
body 	{ text-align: center; }

#menu	{
		padding: 10px;
		margin: 10px
		}
		
		
#content {
		background:#fff;
		   width:730px;
		   margin:0 auto 0;
		   border:10px solid #fff;
		   position:relative;
		   padding: 10px;
		   }
			
body 	{
		background-image: url(bg_tile.jpg);
		/* margin:5; */
		text-align: left;
		}

.style1 {
		font-family: Verdana;
		font-size: 10px;
		color: #FFFFFF;
		}
		
.style2 {
		font-family: Verdana;
		font-size: 10px;
		color: #545454;
		text-align: left
		}

.class1	a:link {color: #545454}
.class1 a:visited {color: #545454}
.class1 a:hover {color: #fff}
.class1 a:active {color: #fff}

Thats what i've changed it to, but that just kill's all the paragraph formatting!

/edit i added in some formatting for the menu but it seems to be ignoring it, css n00b :cool:
 
Last edited:
Back
Top Bottom