If I’m reading this post correctly, when you install Google Chrome on your iOS device you are not getting Google’s preferred rendering engine, instead you are still getting Apple’s. So effectively, Google Chrome on iOS is just a skin on top of Safari. Due to constraints of the iOS platform, all browsers…
Month: January 2017
Potential New CSS Properties
Flow Root Hopefully this one lands. The property display: flow-root; would essentially allow a container to grow with the inner content, even if the inner content was floated. Hex RGBA I hate when I need to take an RGB value and make it transparent. I’d love to have 8-digit hex even…
HTML Select placeholder
If a select element has a required attribute specified does not have a multiple attribute specified has a display size of 1 AND if the value of the first option element in the select element’s list of options (if any) is the empty string that option element’s parent node is…
The WordPress post that kept 404’ing on Publish
This was a fun one. A client was updating a simple page with availabilities for trips that they offer. This wasn’t a custom post type, there were no custom fields and really not a whole lot of plugins that would interfere. But when they hit Publish all they got was “Page not found” Here’s…
Preferred WP/ACF image usage
In ACF, try to never use the_sub_field() on an image and always have ACF return an image array, especially for larger images. Calling the_sub_field() directly will bypass WordPress’s image sizing code and should only be used if you have an explicit size that designers are cropping to in Photoshop. To…