Collapse Forum Goal Mod

Download and support for PhpBB3 Forum Goal MOD
Locked
Marco
BBCoder II
BBCoder II
Posts: 9
Joined: 09 Jun 2012, 18:45
BBCodes: 5
Favourite BBCode: Info & Warn
Favourite MOD: ReImage resizer
Location: Italy
Contact:

Collapse Forum Goal Mod

Post by Marco »

Hi,
I installed this great mod and I would like to add the button to collapse this tab.
How can I do this? I mean something like in this forum.
Thanks
User avatar
themission
BBCoder III
BBCoder III
Posts: 123
Joined: 10 Aug 2011, 22:32
BBCodes: 3
Location: Devon UK
Contact:

Collapse Forum Goal Mod

Post by themission »

Its in the Donators Area = Donate and find out :) glad to have helped you
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Collapse Forum Goal Mod

Post by Stoker »

First you need to install this mod from Christian Bullock: http://www.christianbullock.com/2011/ph ... th-cookies
Then extend it to the Forum Goal mod.
Board rules! No PM support
Marco
BBCoder II
BBCoder II
Posts: 9
Joined: 09 Jun 2012, 18:45
BBCodes: 5
Favourite BBCode: Info & Warn
Favourite MOD: ReImage resizer
Location: Italy
Contact:

Collapse Forum Goal Mod

Post by Marco »

Thanks for the information, I already have the mod installed.
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Collapse Forum Goal Mod

Post by Stoker »

Then we will make a change with the last edit.
Delete this part from forumlist_body.html:

Code: Select all

<script type="text/javascript">
$(".forumlist").collapse({show: function(){
this.animate({
opacity: ‘toggle’,
height: ‘toggle’
}, 300);
},
hide : function() {

this.animate({
opacity: ‘toggle’,
height: ‘toggle’
}, 300);
}
});
</script>
Insert it at the bottom of index_body.html instead.

Open forumgoal_body.html
Find:

Code: Select all

<div class="forabg">
Before add:

Code: Select all

<div class="forumlist">
Find:

Code: Select all

<ul class="topiclist forums">
Before add:

Code: Select all

<!– IF SCRIPT_NAME eq ‘index’ –><div class="trigger active"></div><!– ENDIF –>
<div class="collapsethis">
Find:

Code: Select all

</table>
		</li>
		</ul>
After add:

Code: Select all

</div>
Find:

Code: Select all

<span class="corners-bottom"><span></span></span></div>
</div>
After add:

Code: Select all

</div>
Thats it!
Board rules! No PM support
Marco
BBCoder II
BBCoder II
Posts: 9
Joined: 09 Jun 2012, 18:45
BBCodes: 5
Favourite BBCode: Info & Warn
Favourite MOD: ReImage resizer
Location: Italy
Contact:

Collapse Forum Goal Mod

Post by Marco »

Thanks too much Stoker!
Locked