2 questions

joltting

New Member
Hello,

I need some help with two things I'm havin truble with.

1.How do I change the "
PHP:
" tags background color? But what I mean, I have a dark template, and it's hard to see colored code in the "[php]" brackets


2.How do I make the advance post editor show the "[img]" tag instead of the picture itself? same goes with the link tag.

thanks,
-Jolt
 
joltting said:
Hello,

I need some help with two things I'm havin truble with.

1.How do I change the "
PHP:
" tags background color? But what I mean, I have a dark template, and it's hard to see colored code in the "[php]" brackets[/quote]

why not change the php image to a lighter one? i have a dark style as well
maybe change the editor colors from main css

[quote=joltting]
2.How do I make the advance post editor show the "[img]" tag instead of the picture itself? same goes with the link tag.

thanks,
-Jolt[/quote]

thats html work
edit the templates for edit post, quick reply ( i dont recall the exact names of the templates and i cant really think much right now i guess its postbit_quickreply and the other one is sumthing _editpost i dont remember)
 
1.php:
In the template bbcode_php find:
Code:
height: {$blockheight}px;
on the next line add:
Code:
background-color:#fff;
change color to your preference.

save

2.tags:
Goto:
Admincp>>vBulletin options>>Message Posting Interface Options

Set all to "Enablle standard controls"

save ;)
 
Hoxxy said:
1.php:
In the template bbcode_php find:
Code:
height: {$blockheight}px;
on the next line add:
Code:
background-color:#fff;
change color to your preference.

save

2.tags:
Goto:
Admincp>>vBulletin options>>Message Posting Interface Options

Set all to "Enablle standard controls"

save ;)

lol thanks alot
i used to go take the tempelate and add the buttons manually lol

thanks again
 
Back
Top