How to change the text color of the image editor in vBulletin

The text color in the image editor can be altered from your vBulletin admin panel->Styles & Templates->Style Manager->Edit Templates->Go->CSS Templates->editor.css.

Search for the .editoroverlay.imageoverlay div.imagetarget definition and enter the preferred code in it using the following line:

color: COLOR;

Replace COLOR with the color name or the corresponding HEX code.

The definition will be similar to the following one:

.editoroverlay.imageoverlay div.imagetarget {
margin-{vb:stylevar left}:25%;
border:solid 1px {vb:stylevar mid_border.borderColor};
padding:5px;
color: green;
font-size:{vb:stylevar small_fontSize};
background-color:{vb:stylevar content3_background.backgroundColor};;
}

You need help with an application? hostlantern is specialized in hosting and supporting more than 200 scripts. Sign up for our web hosting services and let us help you with your application, 24/7!

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to change the vBulletin administrator password

In order to change the vBulletin forum administrator password you should load your vBulletin...

Home / vBulletin FAQ / How to enable private messages notifications for vBulletin users?

You can allow all vBulletin forum members to receive private messages by running a query under...

How to enable/disable ‘Email this Page to a Friend’ in vBulletin?

The "Email this Page to a Friend" functionality can be enabled/disabled per user group. You can...

How to insert programming source code in vBulletin posts?

Many forum members, especially in the technically oriented forums, need to insert programming...

Remove default http:// from the Insert Link option in vBulletin

In order to remove the predefined http://  string from the Insert Link functionality in the...