|
Post by rhondairv on Apr 25, 2010 15:01:05 GMT -8
I would love a code that will allow me to choose the font size on my forum. Not for posting. I have a code for that. This is for all else like the column for last posts. Thank you for this consideration!
|
|
|
Post by Wormopolis on Apr 25, 2010 20:58:53 GMT -8
have you tried adding to the global headers:
<style type="text/css"> .windowbg, .windowbg2 {font-size: 12px;} </style>
|
|
|
Post by rhondairv on Apr 26, 2010 19:41:09 GMT -8
It doesn't change anything on the home page and i upped it to 24px It did however change inside where i modify or delete mods lol
|
|
|
Post by Wormopolis on Apr 26, 2010 21:13:15 GMT -8
well the bigger problem is that all those cells have font tags inside them, and the font tags have inline sizes of 1. try this:
<script type="text/javascript"> for (fn=document.getElementsByTagName('font'), f=0; f<fn.length; f++) { if (fn[f].size==1) fn[f].size=2; } </script>
|
|
|
Post by rhondairv on Apr 27, 2010 7:35:08 GMT -8
nope, didn't do the trick.
Maybe it is just not possible.
|
|
|
Post by Wormopolis on Apr 29, 2010 18:02:39 GMT -8
that code is working for me on main page. again, try taking it out of hackmanager and puttin directly into global footer.
|
|
|
Post by rhondairv on Apr 30, 2010 13:15:43 GMT -8
wohooooooooooooooooooooooooooo!!!!! worked.. you are a freakin genius!!!!!!!!!!!!!!!!
|
|
|
Post by Wormopolis on Apr 30, 2010 16:20:20 GMT -8
I do what I can with what I got left.
|
|