inherit
8275
0
Apr 8, 2024 11:05:50 GMT -8
M³
SF 49ers
2,120
March 2003
madmastermind
|
Post by M³ on Jun 26, 2005 16:01:32 GMT -8
Hey there, is there a code that will shorten the height of the menu bar? Thanks a mill.
|
|
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 26, 2005 16:10:21 GMT -8
Try this in your Header:
<script> document.getElementsByTagName("td")[5].height="10"; </script>
|
|
inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Jun 27, 2005 23:04:00 GMT -8
Won't work. The cell has no set height to begin with. The height is based on the cell padding and the content of the cell. Directly changing the height can only increase it. To remove the cell padding from the menu table, use this:
<style type="text/css"> <!-- .menubg{padding: 0px;} --> </style>
in the Global Header
|
|