Quick Tip: Debug iOS Safari on a true local emulator (or your actual iPhone/iPad)

We’ve been able to do this for years, largely for free (ignoring the costs of the computer and devices), but I’m not sure as many people know about it as they should.

TL;DR: XCode comes with a “Simulator” program you can pop open to test in virtual iOS devices. If you then open Safari’s Develop/Debug menu, you can use its DevTools to inspect right there — also true if you plug in your real iOS device.

Direct Link to Article

The post Quick Tip: Debug iOS Safari on a true local emulator (or your actual iPhone/iPad) appeared first on CSS-Tricks.

Read more

30+ Best Photoshop Patterns of 2018 (Free & Pro)

If you’ve been looking for a creative tileable pattern to make your designs look even more beautiful, you’ve come to the right place. In this post, we’re sharing a collection of the best Photoshop patterns with various design styles and aesthetics (both free and premium). When designing a background, whether it’s for a book cover, […]
Read more

Deliver exceptional customer experiences in your product

(This is a sponsored post.)

​Pendo is a product cloud that helps create lovable products that customers can’t live without. Pendo enables product teams to understand product usage, collect user feedback, measure NPS, assist users in their apps and promote new features in product — all without requiring any engineering resources. This unique combination of capabilities is all built on a common infrastructure of product data and results in better onboarding, increased user engagement, improved customer satisfaction, reduced churn, …

The post Deliver exceptional customer experiences in your product appeared first on CSS-Tricks.

Read more

30+ Best Fonts for Logo Design

Crafting the perfect logo often takes a lot of hard work and time. You have to come up with a design outline, pick the right colors, and find the perfect logo font to match the branding. Don’t worry. We’re here to make that process a bit easier for you. No need to spend hours surfing […]
Read more

The dialog element

Chris Manning digs into <diaglog>:

A dialog element provides:

  • An element that is easy to show and hide, including an open boolean attribute on the element itself.
  • Two versions: a standard popover or modal version.
  • A ::backdrop pseudo-element for modal types.
  • Built-in focus: see dialog focusing steps.
  • ARIA role support (dialog is the implied default). Also accepts the alertdialog role.
  • A pending stack for multiple dialogs.
  • A DOM interface with the open boolean and methods show,

The post The dialog element appeared first on CSS-Tricks.

Read more

React Basics For WordPress Developers

In my last post for Torque, I wrote about how WordPress with the new Gutenberg editor uses React. I also gave my opinion on if WordPress developers need to learn React. While you do not need to know React to create Gutenberg blocks, I laid out a few reasons why it might make sense for …
The post React Basics For WordPress Developers appeared first on Torque.
Read more

Choosing the Best Logo Fonts: 10 Tips & Examples

The font a brand selects for their logo can evolve into lettering that people identify with a company or product. Just think about the typefaces for Coca-Cola, Disney or even eBay. Even if you see those typefaces without the brand names, there’s still an immediate connection. That’s the value of choosing the best logo font […]
Read more

Using Event Bus to Share Props Between Vue Components

By default, communication between Vue components happen with the use of props. Props are properties that are passed from a parent component to a child component. For example, here’s a component where title is a prop:

<blog-post title="My journey with Vue"></blog-post>

Props are always passed from the parent component to the child component. As your application increases in complexity, you slowly hit what is called prop drilling here’s a relate article that is React-focused, but totally applies). Prop drilling is …

The post Using Event Bus to Share Props Between Vue Components appeared first on CSS-Tricks.

Read more