7 Ways To Truly Understand Your Target Audience

As a marketer or blogger, one of the most important factors to your success is how well you understand your target audience. They have all this data and metrics that give them data on their audience. They don’t, however, truly know their target audience. They don’t know what makes them tick. They don’t know what …
The post 7 Ways To Truly Understand Your Target Audience appeared first on Torque.
Read more

Scaling CSS: Two Sides of a Spectrum

The subject of scaling CSS came up a lot in a recent ShopTalk Show with Ben Frain. Ben has put a lot of thought into the subject, even writing a complete book on it, Enduring CSS, which is centered around a whole ECSS methodology.

He talked about how there are essentially two solutions for styling at scale:

  1. Total isolation
  2. Total abstraction

Total isolation is some version of writing styles scoped to some boundary that you’ve set up (like …

The post Scaling CSS: Two Sides of a Spectrum appeared first on CSS-Tricks.

Read more

Why monday.com is the Universal Team Management Tool for Your Team

This platform is perfect for teams sized at 2-to-200 — and gives every employee the same level of transparency.

Every project management tool seeks to do the same instrumental thing: keep teams connected, on task and on deadline to get major initiatives done. But the market is getting pretty crowded, and for good reason — no platform seems to have gotten the right feel for what people need to see, and how that information should be displayed so that it’s …

The post Why monday.com is the Universal Team Management Tool for Your Team appeared first on CSS-Tricks.

Read more

20+ Church Bulletin & Newsletter Templates

Every church needs the right templates for creating effective church bulletins and newsletters to spread God’s message. Thankfully, there are many easy-to-use church bulletin templates to quickly design flyers and newsletters for your congregation! You need to be creative to attract the attention of your churchgoers, with modern and attractive designs. We’ve handpicked a collection […]
Read more

Drupal Gutenberg Showcased at DrupalCamp Oslo 2018

Gutenberg appreciation is running high across the CMS pond in the Drupal world. DrupalCamp Oslo 2018, Norway’s biggest national camp to date, was held over the weekend. The event featured two sessions on Gutenberg – one for site builders and one for block developers. Frontkom, the team behind Drupal Gutenberg, (more…)
Read more

Testing React Components With Enzyme

So far in my series of posts on React development for WordPress, I’ve covered React basics, create-react-app and testing with Jest. Jest is useful for testing the rendering of React components. There are a few big buckets of functionality we have not looked at testing yet. Specifically how the internal state of stateful component changes, …
The post Testing React Components With Enzyme appeared first on Torque.
Read more

Keyboard-Only Focus Styles

Like Eric Bailey says, if it’s interactive, it needs a focus style. Perhaps your best bet? Don’t remove the dang outlines that focusable elements have by default. If you’re going to rock a button { outline: 0; }, for example, then you’d better do a button:focus { /* something else very obvious visually */ }. I handled a ticket just today where a missing focus style was harming a user who relies on visual focus styles to …

The post Keyboard-Only Focus Styles appeared first on CSS-Tricks.

Read more

Dark modes with CSS

With the introduction of dark mode in macOS, Safari Technology Preview 68 has released a new feature called prefers-color-scheme which lets us detect whether the user has dark mode enabled with a media query.

That’s right. If this becomes a little bit more supported in other browsers, then we might potentially soon have a way to toggle on night modes with a few lines of CSS!

Recently Mark Otto described how we can start using prefers-color-scheme today in order …

The post Dark modes with CSS appeared first on CSS-Tricks.

Read more