Log in

View Full Version : Border


Martyn2k6
10-28-2007, 04:56 PM
https://vborg.vbsupport.ru/external/2007/10/4.png

Do you know how i can change the colour of the big white border?

ChrisLM2001
10-28-2007, 05:00 PM
IIRC, editor CSS is hardcoded and has to be manually edited in the vbulletin_editor.js file in the clientstyles folder. It's there you can add the special touches to the editor (adding a background image and other fancy tweaks).

Martyn2k6
10-28-2007, 05:07 PM
any easy way?

Princeton
10-28-2007, 05:18 PM
edit .panel (Style Manager CSS)
- remove border width or change color

add
fieldset{border:1px solid #D0D0BF;padding:8px} (Style Manager CSS/ Additional CSS Definitions)

edit editor_clientscript template
FIND:
.vBulletin_editor {REPLACE WITH:
.vBulletin_editor {
border: 2px groove #333;

ChrisLM2001
10-28-2007, 05:49 PM
any easy way?

Princeton gave you the easy way.

I pointed where you can do things like the below.

Have fun! :)