NamePros
Welcome, Guest! Ready to make a name for yourself in the domain business? We welcome both the hobbyist and professional domainer to join the discussion as part of the NamePros community.

Click here to create your profile to start earning reputation for posting, and trader ratings for buying & selling in our free e-marketplace. Build your trader rating with each successful sale. Our system has tracked over 100,000 sales and counting!
FAQ & TOS Register Search Today's Posts Mark Forums Read

Go Back   NamePros.com > Website Development Discussion Forums > Programming
Reload this Page Phpbb Forum Help, Quick Fix Please Help.

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.

Advanced Search
4 members in live chat ~  


Closed Thread
 
LinkBack Thread Tools
Old 06-04-2006, 09:34 PM THREAD STARTER               #1 (permalink)
New Member
Join Date: Jun 2006
Posts: 14
highhobbiescom is an unknown quantity at this point
 



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!
highhobbiescom is offline  
Old 06-04-2006, 09:39 PM   #2 (permalink)
NamePros Regular
 
DylanButler's Avatar
Join Date: Jan 2006
Location: San Diego, CA
Posts: 734
DylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to behold
 



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.
DylanButler is offline  
Old 06-04-2006, 09:45 PM THREAD STARTER               #3 (permalink)
New Member
Join Date: Jun 2006
Posts: 14
highhobbiescom is an unknown quantity at this point
 



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
highhobbiescom is offline  
Old 06-04-2006, 09:54 PM   #4 (permalink)
NamePros Regular
 
DylanButler's Avatar
Join Date: Jan 2006
Location: San Diego, CA
Posts: 734
DylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to behold
 



did you turn it back?

remove scope=col from the top tds.. thats probably whats doing that... stupid dreamweaver. after that, apply a margin to the table and set a border using css.
DylanButler is offline  
Old 06-04-2006, 10:00 PM THREAD STARTER               #5 (permalink)
New Member
Join Date: Jun 2006
Posts: 14
highhobbiescom is an unknown quantity at this point
 



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>
highhobbiescom is offline  
Old 06-04-2006, 10:06 PM   #6 (permalink)
NamePros Regular
 
DylanButler's Avatar
Join Date: Jan 2006
Location: San Diego, CA
Posts: 734
DylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to behold
 



<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
DylanButler is offline  
Old 06-04-2006, 10:08 PM THREAD STARTER               #7 (permalink)
New Member
Join Date: Jun 2006
Posts: 14
highhobbiescom is an unknown quantity at this point
 



perfect thanks dylan
highhobbiescom is offline  
Old 06-04-2006, 10:09 PM   #8 (permalink)
NamePros Regular
 
DylanButler's Avatar
Join Date: Jan 2006
Location: San Diego, CA
Posts: 734
DylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to behold
 



Rep appreciated
DylanButler is offline  
Old 06-04-2006, 10:15 PM THREAD STARTER               #9 (permalink)
New Member
Join Date: Jun 2006
Posts: 14
highhobbiescom is an unknown quantity at this point
 



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>
I just need one more thing. A little white around everything, like cellspacing i think its called? Around that 3px black border, so the red and yellow is not RIGHT on the sides. You know?
highhobbiescom is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


 
All times are GMT -7. The time now is 02:14 PM.

Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0 Ad Management plugin by RedTyger