You can add the following code in your theme’s functions.php file to change the WordPress excerpt length. Change the number(100) to a desired length. add_filter(‘excerpt_length’, ‘new_excerpt_length’); function new_excerpt_length($length) { return 100; }
How to make Blurry Text with CSS
Its pretty easy to make some blurry text with CSS. We can do it by just making the text color transparent and adding some text shadow. Here’s the code for the same: Blurry Text with...
Google Web Fonts – How to Use, Download and Sync
Typography is the key element in the design process. While designing a web page, business card, brochure or a news paper advertisement fonts and text style plays an important role to get user attention....
How to create an easy to remember but super-strong password
Today we spend most of our time online, either on our personal computers, office work-station and most of the times on mobile phones. Today there’s a web or mobile app for almost everything and we...
CSS Style Guide – Part 4
Specificity As we’ve seen, CSS isn’t the most friendly of languages: globally operating, very leaky, dependent on location, hard to encapsulate, based on inheritance… But! None of that even comes close to the horrors...
CSS Style Guide – Part 3
CSS Selectors Perhaps somewhat surprisingly, one of the most fundamental, critical aspects of writing maintainable and scalable CSS is selectors. Their specificity, their portability, and their reusability all have a direct impact on the...
CSS Style Guide – Part 2
HTML Given HTML and CSS’ inherently interconnected nature, it would be remiss of me to not cover some syntax and formatting guidelines for markup. Always quote attributes, even if they would work without. This...
CSS Style Guide – Part 1
Introduction CSS is not a pretty language. While it is simple to learn and get started with, it soon becomes problematic at any reasonable scale. There isn’t much we can do to change how...
Rebooting from zero
I’ve been a bit inactive around here lately, so I thought it was a good moment now to put some type of website back up – although it’s simple. Some people have been asking...