View previous topic :: View next topic |
Author |
Message |
cherstaly
Joined: 18 Jun 2004 Posts: 4 Location: rochester, ny
|
Posted: Mon Jul 19, 2004 11:35 pm Post subject: How to ? |
|
|
I'm really confused right now. I'm trying to make each post I make in it's own box, here's a picture of what I mean...
The coding for that would be...
Code: |
<tbody>
<tr>
<td class="td2">
// SUBJECT</td>
<tr>
<td class="td1">
STUFF HERE STUFF HERE STUFF HERE STUFF HERE STUFF HERE STUFF HERE STUFF HERE STUFF HERE STUFF HERE STUFF HERE STUFF HERE </td>
</tr>
</tbody>
|
I tried to do that with b2 and it wasn't working for me at all. If you'd like to see what it did and my progress with it, please click here.
Can someone please help me??  |
|
Back to top |
|
 |
cherstaly
Joined: 18 Jun 2004 Posts: 4 Location: rochester, ny
|
Posted: Mon Jul 19, 2004 11:41 pm Post subject: |
|
|
actually, for the first post it would be:
Code: |
<td width="25"> </td>
<td width="483" align="center" valign="top">
<table width="99%">
<tbody>
<tr>
<td class="td2">
// SUBJECT </td>
<tr>
<td class="td1">
FIRST POST FIRST POST
</td>
</tr>
</tbody>
|
then for each additional post:
Code: |
<tbody>
<tr>
<td class="td2">
// Subject</td>
<tr>
<td class="td1">
Post post post post
</td>
</tr>
</tbody>
|
|
|
Back to top |
|
 |
Sigg3
Joined: 03 Jul 2003 Posts: 428 Location: Oslo, Norway
|
Posted: Tue Jul 20, 2004 12:24 pm Post subject: |
|
|
You'd want to do this:
<html>
<body>
blah blah
<table>
<b2 loop>
<tr><td post></td></tr>
</b2loop>
</table>
blah blah
</body>
</html>
BUT, if you mess around with CSS this can be acchieved by less!
Check out the tutorial over at the CSS Shark. After that you'll never look at html structure the same way again. _________________ Sigg3 dot net - because you're worth it! | b2 Cafelog Resource Center |
|
Back to top |
|
 |
|