Table Issue

This is a discussion on "Table Issue" within the Web Page Design section. This forum, and the thread "Table Issue are both part of the Design Your Website category.



 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1  
Old Dec 25th, 2007, 02:24
mcdanielnc89's Avatar
SuperMember

SuperMember
Join Date: Sep 2007
Location: Missouri
Age: 19
Posts: 232
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Table Issue

Hello again,

Now that I have gotten the layout problem fixed, I now have a table problem. It displays really big.. Like there is cellpadding or something which there isn't.. here is the link to what I'm talking about.. http://www.newbreedjesusfreaks.com/downloads

here's the html
HTML: Select all
<div style="text-align: center">
<img src="http://www.newbreedjesusfreaks.com/images/downloads.png" alt="">
<a href="/music" title="Music Downloads"><strong>Music</strong></a>
<a href="/software" title="Software Downloads"><strong>Software</strong></a>
<a href="/cgames" title="Game Downloads"><strong>Games</strong></a>
<br><br>
<div id="dlbkground">
<table class="dltable" border="5" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="tdheader">
<p>TOPIC GOES HERE</p>
</td>
</tr>
<tr>
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td valign="top" style="width: 10%" class="tdtopic">
<p>Description:</p>
</td>
<td class="tdinfo"></td>
</tr>
<tr>
<td valign="top" style="width: 10%" class="tdtopic">
<p>Version:</p>
</td>
<td class="tdinfo"></td>
</tr>
<tr>
<td valign="top" style="width: 10%" class="tdtopic">
<p>File Size:</p>
</td>
<td class="tdinfo"></td>
</tr>
<tr>
<td valign="top" style="width: 10%" class="tdtopic">
<p>Added:</p>
</td>
<td class="tdinfo"></td>
</tr>
<tr>
<td valign="top" style="width: 10%" class="atdtopic">
<p>&nbsp;</p>
</td>
<td class="atdinfo">
<img src="http://www.newbreedjesusfreaks.com/images/download.gif" alt="">
</td>
</tr>
</table>
</table>
</div>
</div>
and here's the css:

Code: Select all
#background {
    background-color: #FFFFFF;
    color: #47698D;
    font-size: 8pt;
    text-align: left;
    border-color: #0066FF;
}
#dlbkground {
 background-color: #FFFFFF;
 color: #004287;
 font-family: Arial, Verdana, sans-serif;
 font-size: 8pt;
 font-weight: bold;
}

#dltable {
 border-color: #004287;
}

.tdheader {
 font-size: 8pt;
 font-family: Arial, Verrdana, sans-serif;
 font-weight: bold;
 color: #ffffff;
 background-color: #004287;
}

.tdinfo {
 background-color: #ffffff;
 color: #004287;
 border-top: 1px solid #CCCCCC;
 border-bottom: 1px solid #CCCCCC;
 border-left: 1px solid #CCCCCC;
 border-right: 1px solid #CCCCCC;
 font-size: 8pt;
 font-family: Arial, Verdana, sans-serif;
 font-weight: bold;
}

.tdtopic {
 background-color: #FFFFFF;
 color: #004287;
 border-top: 1px solid #CCCCCC;
 border-bottom: 1px solid #CCCCCC;
 border-left: 1px solid #CCCCCC;
 border-right: 1px solid #CCCCCC;
 font-size: 8pt;
 font-family: Arial, Verdana, sans-serif;
 font-weight: bold;
}

.atdinfo {
 background-color: #ffffff;
 color: #004287;
 border-top: 1px solid #CCCCCC;
 border-bottom: 1px solid #CCCCCC;
 border-right: 1px solid #CCCCCC;
 font-size: 8pt;
 font-family: Arial, Verdana, sans-serif;
 font-weight: bold;
 text-align: right;
}

.atdtopic {
 background-color: #FFFFFF;
 color: #004287;
 border-top: 1px solid #CCCCCC;
 border-bottom: 1px solid #CCCCCC;
 border-left: 1px solid #CCCCCC;
 font-size: 8pt;
 font-family: Arial, Verdana, sans-serif;
 font-weight: bold;
}

.topicw {
 width: 12%;
}
Last Blog Entry: My blog? (Oct 18th, 2007)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Dec 25th, 2007, 17:59
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Table Issue

The URL you posted returns a 403 error!

For your table, try adding this:
Code: Select all
#dltable {
 border-color: #004287;
 padding:0;
 margin:0;
}
That may solve the issue.
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jan 1st, 2008, 16:36
masonbarge's Avatar
Highly Reputable Member
Join Date: Jan 2006
Location: Atlanta GA
Posts: 631
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Table Issue

Your page isn't up. In general, though -- why are you using a table at all? Just use div's. It's a lot faster to load and gives you more control.

Something like 99% of the tables I see are a mistake.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Jan 1st, 2008, 16:49
Most Reputable Member
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Table Issue

Quote:
Originally Posted by masonbarge View Post
In general, though -- why are you using a table at all? Just use div's. It's a lot faster to load and gives you more control.

Something like 99% of the tables I see are a mistake.
He's using a <table> to display tabular data. This is the correct use of a <table>.

Using <div>s to fake tables is "unsemantic" (and just plain daft).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Jan 2nd, 2008, 01:23
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,611
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Re: Table Issue

Dead link!
Last Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Strange table cell height issue niko79 Web Page Design 16 Jun 5th, 2008 10:14
timing issue for filter table tweakmy JavaScript Forum 2 Nov 30th, 2007 12:48
Alignment issue in table with multiple select peacher Web Page Design 2 Aug 23rd, 2007 07:35
Table stretching issue in IE simpleword Web Page Design 1 May 26th, 2006 10:55
Need to align width of Float table with the table below Vertabase Web Page Design 4 Mar 8th, 2006 21:21


All times are GMT. The time now is 08:52.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42