|
| |
|
|
moondog
Posts: 86 Joined: 2/12/2004 Status: offline
|
Gaps in Final Page - 6/19/2009 20:10:54
I'm trying to design a webpage for the main page of a game club I belong to. I have the design and have cut it into pieces and gotten the measurements of all the pieces. I have created the page based on those measurements and the page looks pretty darn good. EXCEPT there are some slight gaps in the final product. http://www.moondographics.com/csa%20main%20page/ I have gone over the page/images 100 times today and now I have a headache and would like the help of people better than I. Before you ask, I created the image as it is because all the links (which are NOT active) will have hover properties assigned. I have done similar before, but did NOT have this problem .... that's what has me stumped. HELP PLEASE! If you need any other info, just ask
|
|
|
|
Thomas Brunt
Posts: 6214 Joined: 6/6/1998 From: St. Matthews SC USA Status: offline
|
RE: Gaps in Final Page - 6/20/2009 8:30:10
Hard to know for sure just by looking at the code, but here are a few things that could be causing it. The cells holding the subtables at issue all have height attributes. Height attributes can cause this kind of trouble when you're building a tables based page layout. You really don't need height attributes in a layout like this. The images create your height. Another possibility is the following unnecessary code. <div align="center"> <center> That's above each of the subtables at issue. </center> </div> I would take the following code. <td width="154" height="246" rowspan="3"> <div align="center"> <center> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber7" height="100%"> And I would try changing it to this. <td style="width:154px;vertical-align:top;" rowspan="3"><table border="0" cellpadding="0" cellspacing="0" style="border:none;width:154px"> Sometimes putting all the code on a single line will eliminate gaps.
_____________________________
-- Thomas Brunt South Carolina Web Design
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|