Community
Discussions
Ideas
Community Blogs
Marketo User Groups (MUGs)
Support
Case Management
Knowledgebase
Product Documentation
Developer Portal
Training
Sign In
Can Hint Text on a form be Aligned?
Topic Options
Subscribe to RSS Feed
Mark Topic as New
Mark Topic as Read
Float this Topic for Current User
Bookmark
Subscribe
Printer Friendly Page
Anonymous
Not applicable
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
03-05-2015
10:57 AM
03-05-2015
10:57 AM
Can Hint Text on a form be Aligned?
I was trying to center hint text on a form
Labels:
Lead Management
Tags
(1)
Tags:
forms 2.0
All forum topics
Previous Topic
Next Topic
2 REPLIES
2
Josh_Hill13
Level 10 - Champion Alumni
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
03-05-2015
11:48 AM
03-05-2015
11:48 AM
Re: Can Hint Text on a form be Aligned?
you can try adjusting CSS on the Form or on the page. Or do custom formatting.
Justin_Cooperm2
Level 10
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
03-05-2015
11:57 AM
03-05-2015
11:57 AM
Re: Can Hint Text on a form be Aligned?
<style>
::-webkit-input-placeholder { /* WebKit browsers */
text-align:center;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
opacity: 1;
text-align:center;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
opacity: 1;
text-align:center;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
text-align:center;
}
</style>
credit:
http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css