php forum
php mysql forum
php mysql smarty
 
Page 4 of 4 < 1 2 3 4
Topic Options
#232619 - 01/22/03 11:51 PM Re: [6.2] Table Wrappers Mod [Re: wilstephens]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC

   Re: [6.2] Table Wrappers Mod to Del.icio.us Add to del.icio.us
  Digg Re: [6.2] Table Wrappers Mod Digg it
[]You are good! I like it. I want it. I need it. <br /><br /><img src="/forum/images/graemlins/laugh.gif" alt="" /> [/]<br /><br />I think shortbus is going for a record. The most mods ever installed on his forums. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#232620 - 01/22/03 11:59 PM Re: [6.2] Table Wrappers Mod [Re: sf49rminer]
Dalantech Offline
Junior Member

Registered: 02/11/01
Posts: 2392
Loc: Naples, Italy
ROFLMAO!<br /><br />I told you... <img src="/forum/images/graemlins/wink.gif" alt="" />
_________________________
Da LAN Tech

Threads Dev Moderator

Top
#232621 - 01/23/03 12:08 AM Re: [6.2] Table Wrappers Mod [Re: Daine]
shortbus Offline
Code Monkey

Registered: 04/19/02
Posts: 631
Loc: Enid, Oklahoma
I can't help it man. Why have it, if it isn't going to be as good as it can be? <br /><br />One of these days, I'm going to hire all of you guys. I just have to be able to afford myself first. <img src="/forum/images/graemlins/cool.gif" alt="" />

Top
#232622 - 01/23/03 12:29 AM Re: [6.2] Table Wrappers Mod [Re: wilstephens]
Dalantech Offline
Junior Member

Registered: 02/11/01
Posts: 2392
Loc: Naples, Italy
Keep track of all the files that you change, and why you changed them.Then, when a new version of Threads comes out, you can use a program like Beyond Compare to quickly apply all of your mods to the new version.
_________________________
Da LAN Tech

Threads Dev Moderator

Top
#232623 - 01/23/03 01:49 AM Re: [6.2] Table Wrappers Mod [Re: sf49rminer]
dimopoulos Offline
Kahuna

Registered: 08/18/02
Posts: 1271
Loc: Vienna, Austria
Damn! It guess I was really tired when I posted that. Yes Chuck it was td and without the $. What copy and paste can do to you.<br /><br />Still I am happy that you managed to get an idea to sort it out. <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />Warm regards<br /><br />Nikos
_________________________
Nikos

Top
#232624 - 01/23/03 05:09 AM Re: [6.2] Table Wrappers Mod [Re: Daine]
omegatron Offline
Member

Registered: 04/05/01
Posts: 3440
Loc: abingdon,md
Shortbus, <br /> <br /> Well lets see. I could write up what I did and post it. However keep in mind you will also need to do Dalantech's Table Wrappers Mod and I suggest as well using Justdave's CSS wrappers mod. You also need to have a registered copy of Photopost. Most important you need to design graphics. I might be able to design something for you if needed. <br /> <br /> This would be my hack order: <br /> <br /> <br /> 1) Apply JustDave's CSSWrappers Mod <br /> <br />http://www.threadsdev.com/threads/php/sh...amp;amp;fpart=1 <br /> <br /> 2) Expand on Dave's work by Doing Dalantech's Table Wrappers Mod on Threads. <br /> <br />http://www.threadsdev.com/threads/php/sh...amp;amp;fpart=1 <br /> <br /> 3) Apply Dalantech's Header Mod ( so that it uses the table wrappers ) <br /> <br />http://www.threadsdev.com/threads/php/sh...amp;amp;fpart=1 <br /> <br /> 4) Then you can start Photopost modifications. It will take me a day or so to document it. This really belongs on the Photopost site more but anyway. Their are a number of things you need to do so this is an intensive hack. There are only 4 files to achieve that look. However the mod's in those 4 files are alot. XHTML compliance issues as well as modifications to doing away with Photopost's entire header/footer system and using Threads. <br /> <br /> You can see their is alot of hacking involved or many hacks to achieve the look. I want uniformity on my site so I tackled Photopost. No sense having every other page use the tablewrappers and not Photopost.
_________________________
Chuck S

DIVE IN AND VISIT ME:

Omegatron\'s Reefs

Administrator at ReefTalk

Top
#232625 - 01/23/03 09:25 PM Re: [6.2] Table Wrappers Mod [Re: sf49rminer]
Dslam Offline
Member

Registered: 06/05/01
Posts: 246
Loc: USA
question .<br />with I define table with to 95% in edit theme then the table gets smaller but the table wrap stays wide ..<br />did I miss something or ?? <img src="/forum/images/graemlins/blush.gif" alt="" />

Top
#232626 - 01/23/03 10:05 PM Re: [6.2] Table Wrappers Mod [Re: interforos]
omegatron Offline
Member

Registered: 04/05/01
Posts: 3440
Loc: abingdon,md
Easy fix. Your tbopen template should look like this <br /> <br /><? //UBBTREMARK <br />$tbopen = <<<UBBTPRINT <br /> <br /><table width="{$theme['tablewidth']}" align="center" border="0" cellspacing="0" cellpadding="0"> <br /><tr> <br /><td class="tlc"><img border="0" src="spacer.gif" width="10" height="10" alt="" /></td> <br /><td class="top"><img border="0" src="spacer.gif" width="10" height="10" alt="" /></td> <br /><td class="trc"><img border="0" src="spacer.gif" width="10" height="10" alt="" /></td> <br /></tr> <br /><tr> <br /><td class="left"><img border="0" src="spacer.gif" width="10" height="10" alt="" /></td> <br /><td width="100%"> <br /><table width="{$theme['tablewidth']}" align="center" cellpadding="1" cellspacing="1" class="tablesurround"> <br /><tr> <br /><td> <br /><table cellpadding="{$theme['cellpadding']}" cellspacing="{$theme['cellspacing']}" width="100%" class="tableborders"> <br /> <br />UBBTPRINT; <br />/* UBBTREMARK */ ?> <br /> <br />Just change it to this <br /> <br /><? //UBBTREMARK <br />$tbopen = <<<UBBTPRINT <br /> <br /><table width="{$theme['tablewidth']}" align="center" border="0" cellspacing="0" cellpadding="0"> <br /><tr> <br /><td class="tlc"><img border="0" src="spacer.gif" width="10" height="10" alt="" /></td> <br /><td class="top"><img border="0" src="spacer.gif" width="10" height="10" alt="" /></td> <br /><td class="trc"><img border="0" src="spacer.gif" width="10" height="10" alt="" /></td> <br /></tr> <br /><tr> <br /><td class="left"><img border="0" src="spacer.gif" width="10" height="10" alt="" /></td> <br /><td width="100%"> <br /><table width="100%" align="center" cellpadding="1" cellspacing="1" class="tablesurround"> <br /><tr> <br /><td> <br /><table cellpadding="{$theme['cellpadding']}" cellspacing="{$theme['cellspacing']}" width="100%" class="tableborders"> <br /> <br />UBBTPRINT; <br />/* UBBTREMARK */ ?> <br /> <br /> <br />The second to last table needs to be set to 100% and it will autosize just fine.
_________________________
Chuck S

DIVE IN AND VISIT ME:

Omegatron\'s Reefs

Administrator at ReefTalk

Top
#232627 - 01/23/03 11:09 PM Re: [6.2] Table Wrappers Mod [Re: sf49rminer]
Dslam Offline
Member

Registered: 06/05/01
Posts: 246
Loc: USA
yup that did it .. Thanks you <img src="/forum/images/graemlins/smile.gif" alt="" />

Top
#232628 - 01/24/03 12:36 AM Re: [6.2] Table Wrappers Mod [Re: sf49rminer]
Dalantech Offline
Junior Member

Registered: 02/11/01
Posts: 2392
Loc: Naples, Italy
Good catrch Chuck! <img src="/forum/images/graemlins/cool.gif" alt="" /><br /><br />I'll update the original zip file later on today, and this bug will be fixed in the next release of the table wrappers mod <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
Da LAN Tech

Threads Dev Moderator

Top
#232629 - 03/09/03 11:17 AM Re: [6.2] Table Wrappers Mod [Re: jacksonm99]
ChAoS_dup1 Offline
Code Monkey

Registered: 11/15/02
Posts: 576
Loc: Great Northwest
Finally worked up the muster to hjack my forums some more and I want to add table wrappers today.Just wanted to double check that this works with Threads 6.2.3. <br />Also Dalantech;<br /><br />Your signature link is not loading but the link to your forums is working. (I was trying to get a peek at the 5x3 array)
_________________________
ChAoS
Emerald Forest Gaming Servers
Official STFU Thread


Top
#232630 - 03/09/03 11:20 AM Re: [6.2] Table Wrappers Mod [Re: barbiro]
Dalantech Offline
Junior Member

Registered: 02/11/01
Posts: 2392
Loc: Naples, Italy
That's odd, my index won't load but Da Forum is working <img src="/forum/images/graemlins/confused.gif" alt="" /><br /><br />The 5x3 array does work for 6.2.3 and should work for all future versions of Threads (I don't see $tbopen and $tbclose going away anytime soon).
_________________________
Da LAN Tech

Threads Dev Moderator

Top
Page 4 of 4 < 1 2 3 4


Top Posters Last 30 Days
AllenAyres 13
Gizmo 10
willing 2
S7ARBVCK 2
MattUK 1
Kevin H 1
tackaberry 1
Who's Online
0 Registered (), 21 Guests and 6 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
Noob - need help, or a reality check!
by Gizmo
Yesterday at 03:21 AM
Here I am! Rock me like a Hurricane!
by AllenAyres
09/02/08 03:05 PM
[7.x] Generic Page Outside of forum directory
by Gizmo
08/30/08 05:43 PM
Team UBBDev Rides Again!
by Gizmo
08/28/08 11:45 PM
Multiple Identity Detector
by MattUK
08/28/08 04:10 PM
[7.3.x] ubb.links
by AllenAyres
08/26/08 09:57 AM
Installing FlashChat with 7.3
by Gizmo
08/23/08 05:36 AM
New Mods
Installing FlashChat with 7.3
by Paug
08/23/08 12:14 AM
[7.3.x] ubb.links
by AllenAyres
06/20/08 11:50 PM
[7.2.1] - Naked shoutbox
by sirdude
08/17/07 10:36 PM
[7.x] Generic Page Outside of forum directory
by
01/14/07 10:58 PM
Multiple Identity Detector
by
12/30/06 06:39 PM
Newest Members
veedubb8, twentyseven, Claus1, welcomeback1, Paug
13327 Registered Users

 

 

 
fusionbb message board php hacks