Discussion
4
Replies
1883
Views
Posted: June 16, 2015
Last activity: October 4, 2018
Closed
Formatting place holder text
Hi,
How to format place holder text for a property? Iwant it to be in italic
Thanks,
Gireesh.
**Moderation Team has archived post**
This post has been archived for educational purposes. Contents and links will no longer be updated. If you have the same/similar question, please write a new post.
Gireesh,
The place holder text can be formatted in the skin rule, unfortunately only the font color is exposed in the UI (as you can see in the screenshot below). Fortunately there is a work around; under the covers the skin engine creates a css class called .placeholder but as I said the skinning engine only exposes the font color so you just need to go to the CSS tab of your skin and add a new stylesheet, in the stylesheet put the style below:
.placeholder
{
font-style: italic;
}