How do I add this feature, featured on Base's forum?
2 posters
Page 1 of 1
How do I add this feature, featured on Base's forum?
Hello,
Take a look at this image:

How do I add that minimize feature?
http://pluspromotion.forumotion.co.uk/
Thanks.
Take a look at this image:

How do I add that minimize feature?
http://pluspromotion.forumotion.co.uk/
Thanks.
Cool-Guy- Forumember
- Posts : 295
Reputation : 0
Language : English
Re: How do I add this feature, featured on Base's forum?
Hi, in this case, jQuery was used. Credits to Saxaca for providing me with the code, please add this to your homepage message:

- Code:
<script>
jQuery(function() {
jQuery('div.forabg ul li.header').prepend('<span class="toggle" style="float: right; margin-right: 10px; font-weight: bold; margin-top: 5px; cursor: pointer;"><img src="http://icons.iconarchive.com/icons/iconarchive/red-orb-alphabet/16/Math-minus-icon.png" width="10px" /></span>');
jQuery('.toggle').click(function() {
if (jQuery(this).parent().parent().parent().find('li.row').is(':visible')) {
jQuery(this).html('<img src="http://icons.iconarchive.com/icons/custom-icon-design/office/16/add-1-icon.png" width="10px" />');
jQuery(this).parent().parent().parent().find('li.row').hide('slow');
}
else {
jQuery(this).html('<img src="http://icons.iconarchive.com/icons/iconarchive/red-orb-alphabet/16/Math-minus-icon.png" width="10px" />');
jQuery(this).parent().parent().parent().find('li.row').show('slow');
}
});
});
</script>


» how do i get my forum featured??
» New update informations + Top-Featured forum reminder
» Clocks (bases and needles)
» Need help making clan bases on my site
» NEED HELP MAKING CLAN BASES ON MY SITE!!!!!!
» New update informations + Top-Featured forum reminder
» Clocks (bases and needles)
» Need help making clan bases on my site
» NEED HELP MAKING CLAN BASES ON MY SITE!!!!!!
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum