inherit
46744
0
Oct 15, 2006 6:10:40 GMT -8
bobbob191
79
June 2005
bobbob191
|
Post by bobbob191 on Jun 26, 2005 17:27:50 GMT -8
Is there a code to hide all of the menu buttons on top: home, login, etc.
|
|
inherit
37852
0
Oct 29, 2007 21:32:58 GMT -8
♥Maygan♥
1,266
February 2005
zangoose
|
Post by ♥Maygan♥ on Jun 26, 2005 21:59:34 GMT -8
Yeah, you have to get a 1x by 1x clear cell. You can use mine: http://img./v638/Fugyuby/transparent.jpg
Now what you do is you go to where you can edit the pictures for the icons (Skins/ Forum Colors<<Customize Images<<"YourSkin"
Now put that 1x by 1x URL in replacement for the menu buttons that you want to get rid of. Did you get that?
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jun 27, 2005 0:47:24 GMT -8
Or, to remove the bar completly:
<script type="text/javascript"> var td=document.getElementsByTagName("td"); for(e=0;e<td.length;e++){ if(td[e].innerHTML.match(/action=search/) && td[e].className.match(/menubg/)){ td[e].style.display="none"; }}</script>
|
|
inherit
46744
0
Oct 15, 2006 6:10:40 GMT -8
bobbob191
79
June 2005
bobbob191
|
Post by bobbob191 on Jun 27, 2005 14:55:02 GMT -8
thanks!
|
|
inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Jun 28, 2005 1:07:01 GMT -8
Why use a for loop for the welcome table?
Global Header:
<script type="text/javascript"> <!-- document.getElementsByTagName("tr")[2].style.display="none"; // --> </script>
And if you're going to remove a row, remove the row (tr) not the cell (td).
|
|