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
Collapse Forum Goal Mod
- themission
- BBCoder III
- Posts: 123
- Joined: 10 Aug 2011, 22:32
- BBCodes: 3
- Location: Devon UK
- Contact:
Collapse Forum Goal Mod
Its in the Donators Area = Donate and find out glad to have helped you
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Collapse Forum Goal Mod
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.
Then extend it to the Forum Goal mod.
Board rules! No PM support
-
- 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
Thanks for the information, I already have the mod installed.
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Collapse Forum Goal Mod
Then we will make a change with the last edit.
Delete this part from forumlist_body.html:
Insert it at the bottom of index_body.html instead.
Open forumgoal_body.html
Find:
Before add:
Find:
Before add:
Find:
After add:
Find:
After add:
Thats it!
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>
Open forumgoal_body.html
Find:
Code: Select all
<div class="forabg">
Code: Select all
<div class="forumlist">
Code: Select all
<ul class="topiclist forums">
Code: Select all
<!– IF SCRIPT_NAME eq ‘index’ –><div class="trigger active"></div><!– ENDIF –>
<div class="collapsethis">
Code: Select all
</table>
</li>
</ul>
Code: Select all
</div>
Code: Select all
<span class="corners-bottom"><span></span></span></div>
</div>
Code: Select all
</div>
Board rules! No PM support
-
- 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
Thanks too much Stoker!