inherit
207832
0
Aug 22, 2017 3:37:15 GMT -8
fraser7
97
April 2014
fraser7
|
Post by fraser7 on Apr 20, 2014 9:51:32 GMT -8
Hi guys, this might be the wrong place for this, but is there a way to hide the shout box on certain pages? For example, i need to remove the shout box on one of my custom pages, its just not right for the page. Any help would be appreciated
|
|
inherit
207832
0
Aug 22, 2017 3:37:15 GMT -8
fraser7
97
April 2014
fraser7
|
Post by fraser7 on Apr 26, 2014 1:09:07 GMT -8
anyone?
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Apr 26, 2014 2:35:29 GMT -8
There a few ways to achieve that.
The best way, in my opinion, would be to add this to your forum board CSS..
.shoutbox { display: none; }
Or you could put it into the board header instead like thus..
<style type="text/css"> .shoutbox { display: none; } </style>
Or if you need a code to do it, add this to your board footer..
<script type="text/javascript"> <!-- $(document).ready(function(){ $('.shoutbox').css('display','none'); }); // --> </script>
Take your pick to the one that best suits you.
|
|
inherit
207832
0
Aug 22, 2017 3:37:15 GMT -8
fraser7
97
April 2014
fraser7
|
Post by fraser7 on Apr 26, 2014 9:23:33 GMT -8
|
|