This isnt the problem.
They are valid. The problem is the aligning of the divs. The float whatever. I dont really know. I still am having troubles
But there is one thing... sometimes my urls have & in them. When they do and I click those little validate buttons at the bottom of the site to validate it

I notice it says to validate the html first and gives me an error.
Error
Target:
Please, validate your XML document first!
Line 29
Column 23
The entity name must immediately follow the '&' in the entity reference.
When I validate the html it says this:
Warning:
Line 29, column 21: character "&" is the first character of a delimiter but occurred as data
Warning:
Line 29, column 22: character "&" is the first character of a delimiter but occurred as data
Warning:
Line 29, column 34: character "<" is the first character of a delimiter but occurred as data
Warning:
Line 35, column 15: character "<" is the first character of a delimiter but occurred as data
Well, it so turns out that
Code:
/*line 29*/ if (windWidth > 775 && windWidth < 999){ /*if available width is between the set sizes*/
newSize.style.width = windWidth; /*set the outer div width to the available width*/
}
if (windWidth > 999){ /*if available width is more than 1024*/
newSize.style.width = 999; /*sets the size of the outer div taking scroll bar into account*/
}
/*line 35*/ if (windWidth < 775){ /*if available width is less than 800*/
newSize.style.width = 775; /*sets the size of outer div taking scroll bar into account*/
}
That is javascript and doesnt work properly for some reason. Maybe not allowed in xhtml? I am not certain as I dont know xhtml well at all.
But I do know that doesnt seem to be my main concern with the tables not lining up. I had them nearly lined up in IE at one point but have since moved them around. I feel there should be a line or two I am missing somewhere in the CSS but I cannot figure it out for the life of me.
I appreciate the help! Thank you so much!
Ryan