Skip to content

Instantly share code, notes, and snippets.

@victorzen
victorzen / Floating Labels.md
Last active August 17, 2017 17:58
Floating field labels
@victorzen
victorzen / Font inside form fields.md
Last active April 16, 2016 01:30
Change the font inside form fields.
<style>
.lp-pom-form-field input {
   font-family: 'Comic Sans MS' !important;
}
</style>
@victorzen
victorzen / Multi-language Datepicker.md
Last active April 16, 2016 00:57
Translate Datepicker to any language.

Change "YourFieldName" for the field name in your form and change the information to your own language and prefered date format. This example is in French :) Set placement to "Head"

<script>
$(function() {
$( "#YourFieldName").datepicker({
    altField: "#datepicker",
    closeText: 'Fermer',
    prevText: 'Précédent',
    nextText: 'Suivant',
 currentText: 'Aujourd\'hui',
@victorzen
victorzen / Align text inside button.md
Last active December 1, 2015 04:18
Align text inside button

Change "#lp-pom-button-21" for your button's id and change "left" for "right" accordingly.

<style>
#lp-pom-button-21 .label{
  text-align: left;
}
</style>