|
Post by tunescool on Aug 23, 2009 20:20:51 GMT -8
i have all my bars at 20 px, i want to change the thread and post page bars with the page jump box to 20 as well. can you change the height of the box and the bar so its 20 pixels
|
|
|
Post by Wormopolis on Aug 23, 2009 21:39:42 GMT -8
can you link me to a thread with a page jump so I can see where it is right now?
|
|
|
Post by tunescool on Aug 23, 2009 21:51:25 GMT -8
|
|
|
Post by Wormopolis on Aug 23, 2009 22:26:28 GMT -8
the pink bar right?
|
|
|
Post by Wormopolis on Aug 23, 2009 22:33:49 GMT -8
try this:
<script type="text/javascript"> document.getElementById('pageNo1').style.height=15; document.getElementById('pageNo1').style.padding=0; </script>
|
|
|
Post by tunescool on Aug 23, 2009 23:20:42 GMT -8
|
|
|
Post by Wormopolis on Aug 23, 2009 23:21:42 GMT -8
that would have to go in global footer to affect things below the welcome table.
|
|
|
Post by Wormopolis on Aug 23, 2009 23:23:37 GMT -8
and actually.. to prevent an error use this:
<script type="text/javascript"> if (document.getElementById('pageNo1')) { document.getElementById('pageNo1').style.height=15; document.getElementById('pageNo1').style.padding=0; } </script>
|
|
|
Post by tunescool on Aug 23, 2009 23:34:54 GMT -8
i assumed headers, it put it down to 20, thanks
|
|
|
Post by tunescool on Aug 24, 2009 19:06:53 GMT -8
id like the bottom bar the same, i guess i thought theyd both change
|
|
|
Post by Wormopolis on Aug 24, 2009 22:20:00 GMT -8
I guess so did I...
this should do it:
<script type="text/javascript"> if (document.getElementById('pageNo1')) { document.getElementById('pageNo1').style.height=document.getElementById('pageNo2').style.height=15; document.getElementById('pageNo1').style.padding=document.getElementById('pageNo2').style.padding=0; } </script>
|
|
|
Post by tunescool on Aug 25, 2009 0:01:02 GMT -8
that worked, where does the 20 come from, theres just the 15 in there
|
|
|
Post by Wormopolis on Aug 25, 2009 0:27:43 GMT -8
the 15 shrinks the input box, which is what is expanding the height. the 20 I believe is coming from your previous code.
|
|
|
Post by tunescool on Sept 1, 2009 5:35:16 GMT -8
|
|
|
Post by Wormopolis on Sept 1, 2009 7:48:41 GMT -8
I cant seem to find anything to fix that... I dont have access to Macintosh Firefox to see exactly what you are seeing. the padding inside the box is already at 0px, and increasing the bottom padding does nothing.
|
|