Online form fields require two fields - input and label - which work together to describe and collect information. One question that often comes up is whether to use input…
The <ol> HTML element is used to create ordered lists. For example First item Second item Third item There are two useful attributes to make the most of ordered list.…
How well a website prints is often not considered by web developers - but it can still be an important part of the user experience - especially if you have…
The following CSS can be used to make embedded YouTube videos responsive to different screen sizes. iframe[src*=youtube] { display: block; margin: 0 auto; max-width: 100%; padding-bottom: 10px; } What does…
WordPress 4.4 introduced core support for emojis. This automatically converts emoticons in your content from their text representation to an icon. To do this it added some JavaScript, CSS and…
The PHP code below shows how to pre-fill a list field in Gravity Forms. This is done using the gform_field_value_$parameter_name filter that allows you to populate a field with values…
In Gravity Forms the 'list' field has a 'add' and 'remove' button to allow users to add and remove rows. By default all users have the ability to add and…
When using the visual editor in WordPress (TinyMCE) you're composing content in HTML. Whilst it may be as easy as writing a document in Microsoft Word, it is still limited…