Tip of the Day

Handy SASS Mixin for Bootstrap 4 Interpolates High and Low Style Values

Here's a quick SASS mixin for developers using Bootstrap 4.  Note that it only works for styles with a single value. The Motivation.... I was inspired to write this because I was working on a new custom WordPress theme where I had design mockups for Desktop and Mobile, which is great!  The challenge was there was really a big difference between the Desktop and Mobile versions.  The Desktop mockup depicted a screen width of 1920px, and the mobile version was for a width of 375px. The execution was really going to call for a LOT of interstitial styles, so I wanted a handy way to take the well-defined high and low values, and let it fill in the middle bits for me automatically. Equal Interval Interpolation (quick and dirty) @mixin interpolate-style( $style, $smallest, $largest ) { $interval: ( $largest - $smallest ) / ( length($grid-breakpoints) - 2 ); $idx: -1; #{$style}: $smallest; @each $key, $breakpoint in $grid-breakpoints { // skip the first two keys @if $idx > 0 { @include media-breakpoint-up($key) { #{$style}: $smallest + ( $idx * $interval ); } } $idx: $idx + 1; } }   It takes the high and low values for a style, and defines the middle ones for you, breaking them into equal intervals. By equal interval, we mean the algorithm assumes the differences between each value should be equal.  For example, if your highest value is 160px and lowest is 40px, and you want 4 values (including the given high and low), they would be assigned at 40px intervals: 40px (given lowest) 80px 120px 160px (given highest) Note that we are ignoring the lowest value, since in my case, I didn't want the styles to start [...]

By |2020-02-29T14:11:54-08:00June 3rd, 2019|Categories: Advice and Opinions, Tip of the Day, Tutorials|Tags: , |0 Comments

You may have the wrong pages indexed on Google, and not even know it!

That can hurt your SEO, confuse your visitors, expose you to security risks, and generally reflect poorly on your business.   If you use tools like Yoast SEO to automatically create a sitemap xml, some pages may be included that you weren't expecting. Those pages are indexed by search engines, and end up in search results.   Review your sitemap by adding /sitemap.xml to your site's URL (http://example.com/sitemap.xml).   If you find some things in there you don't want, you can set the status of the offending posts to DRAFT, or visit the search appearance page to remove them from search results.   If you haven't done this before, visit SEO > Search Appearance in your dashboard. Go through all the tabs, looking for any post types, archives, or taxonomies that you don't want to show in search results, and set their "Show in search results" option to NO.   If someone else configured Yoast for you, we recommend checking on this, because it's something agencies often forget. If you're an agency, we recommend adding this step to your launch checklist.

By |2019-05-17T08:29:43-07:00May 17th, 2019|Categories: Tip of the Day, WordPress|0 Comments

Improve SEO with Schema Markup

Want to improve your Search Engine Ranking? Try adding schema markup to your site. It helps search engines place your content into context, and helping search engines understand your content is generally going to boost your SEO. As a bonus, since they understand your site better, search engines may display additional information about the page, and that will make your result stand out and be more attractive. If your page ranks highly, and the search engine decides to highlight your page, the markup will help it decide how to present it. When I talk about placing your content into context, I mean you can specify things like... This is my company's logo This is my company's physical address This is my contact form These are products or services I sell This is the main navigation menu for my site If you're a theme coder, I recommend you start incorporating schema markup into your themes. If you're not, here's a great WordPress plugin to help get you started: https://wordpress.org/plugins/schema/. Here is where you go to learn more about Schema markup: https://schema.org/ In the attached example, you see how schema markup in JSON_LD format is used to self-describe an Avengers Endgame movie review: https://www.commonsensemedia.org/movie-rev…/avengers-endgame.

By |2019-05-17T08:40:08-07:00May 3rd, 2019|Categories: Advice and Opinions, Tip of the Day, WordPress|0 Comments
Go to Top