| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| New Member Join Date: Jun 2006
Posts: 14
![]() | Phpbb Forum Help, Quick Fix Please Help. I need a table. 30% menu on the left, 70% menu on the right. Red bar, then yellow, then light orange background. All from td classes. Check the page on the bottom of this post, this is what i get right now: <table class="forumline" cellpadding="0" cellspacing="0" border="0" width="30%" align="center"> <tr> <td class="toprow">SuperScions</td></tr><tr> <td colspan="6" class="catrow">SuperScions</td></tr><tr> <td colspan="6" class="row1"><span class="smalltext">Menu</span> </tr> </table> <table class="forumline" cellpadding="0" cellspacing="0" border="0" width="30%" align="center"> <tr> ????: NamePros.com http://www.namepros.com/programming/204311-phpbb-forum-help-quick-fix-please.html <td class="toprow">SuperScions</td></tr><tr> <td colspan="6" class="catrow">SuperScions</td></tr><tr> <td colspan="6" class="row1"><span class="smalltext">Menu</span> </tr> </table> www.superscions.com/home.php PLEASE HELP ASAP I NEED THIS BY TOMORROW THANKS SO MUCH! |
| |
| | #2 (permalink) |
| NamePros Regular Join Date: Jan 2006 Location: San Diego, CA
Posts: 734
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | change what you put above to this HTML Code: <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <th width="30%" scope="col" class="toprow">SuperScions</th> <th width="70%" scope="col" class="toprow">SuperScions</th> </tr> <tr> <td class="catrow">SuperScions</td> <td class="catrow">SuperScions</td> </tr> <tr> <td class="row1"><span class="smalltext">Menu</span></td> <td class="row1"><span class="smalltext">Menu</span></td> </tr> </table> ????: NamePros.com http://www.namepros.com/showthread.php?t=204311 and it should work. Let me know if thats not what you wanted.
Last edited by DylanButler; 06-04-2006 at 09:45 PM.
|
| |
| | THREAD STARTER #3 (permalink) |
| New Member Join Date: Jun 2006
Posts: 14
![]() | Waiting, thanks for helping bro. Not quite, i want it to be red, then yellow, then orange, the red doesnt come in http://superscions.com/home.php The red is toprow Wait, i will show a pic of what i want www.superscions.com/help.jpg |
| |
| | THREAD STARTER #5 (permalink) |
| New Member Join Date: Jun 2006
Posts: 14
![]() | Please fix, its up as you said before now. www.superscions.com/home.php Change and repost PLEASE, thanks so much, im sorry im new. Code: <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <th width="30%" scope="col" class="toprow">SuperScions</th> <th width="70%" scope="col" class="toprow">SuperScions</th> </tr> <tr> <td class="catrow">SuperScions</td> <td class="catrow">SuperScions</td> </tr> <tr> <td class="row1"><span class="smalltext">Menu</span></td> <td class="row1"><span class="smalltext">Menu</span></td> </tr> </table> |
| |
| | #6 (permalink) |
| NamePros Regular Join Date: Jan 2006 Location: San Diego, CA
Posts: 734
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | <table width="100%" border="0" cellspacing="0" cellpadding="3" style="border:3px solid black"> <tr> <td width="30%" class="toprow" style="border-right:3px solid black">SuperScions</td> <td width="70%" class="toprow">SuperScions</td> </tr> <tr> <td class="catrow" style="border-right:3px solid black">SuperScions</td> ????: NamePros.com http://www.namepros.com/showthread.php?t=204311 <td class="catrow">SuperScions</td> </tr> <tr> <td class="row1" style="border-right:3px solid black"><span class="smalltext">Menu</span></td> <td class="row1"><span class="smalltext">Menu</span></td> </tr> </table> I've havn't looked at the CSS, but Ive added a border / margin to the table that should give you the effects youre looking for |
| |
| | THREAD STARTER #9 (permalink) |
| New Member Join Date: Jun 2006
Posts: 14
![]() | Code: <table width="100%" border="0" cellspacing="0" cellpadding="2" style="border:3px solid black"> <tr> <td width="30%" class="toprow" style="border-right:3px solid black">SuperScions</td> <td width="70%" class="toprow">SuperScions</td> </tr> <tr> <td class="catrow" style="border-right:3px solid black">SuperScions</td> <td class="catrow">SuperScions</td> </tr> <tr> <td class="row1" style="border-right:3px solid black"><span class="smalltext">Menu</span></td> <td class="row1"><span class="smalltext">Menu</span></td> </tr> </table> |
| |