The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
Hm, I like to be nearly if not exact too. I haven't actually gotten around to test it. I could experiment a bit to see why it's doing that.
|
#12
|
|||
|
|||
Absolutely, if it can't be made exact, it shouldn't be made at all. I get mental tics when I see small issues like that, knowing it'll have to be fixed sooner or later. LOL
|
#13
|
||||
|
||||
3.8.3 has changed a little since I remember. I remember not liking how Firefox displayed the textarea within the editor (use of border inset). So I edited the file /clientscript/vbulletin_textedit.js. The structure of the js file has changed but I managed to find what I was looking for. I looked at two areas where inset was found and changed them to (in 3.8.3):
Code:
div.style.border="1px solid #000000"; Code:
if(!is_ie){this.editbox.style.border="1px solid #000000"} Since you're using 3.7 the structures should be: Code:
div.style.border = '2px inset'; Code:
if (!is_ie) { this.editbox.style.border = '2px inset'; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|