Blog

WordPress, technology, and miscellaneous thoughts.

Communities Design Development Kate's Updates Non-Technical Search Engine Optimization Social Media Webdev 101 WordPress Workflow

Why Firefox

I use Firefox on desktop, tablet, and mobile. Why Firefox I use Firefox at least partially because I still remember absolutely freaking out as a teenager over tabbed browsing. I’ve been using Firefox pretty much since it came out. I’ve stuck with it through some performance issues in the past — maybe a smarter person would’ve switched during those times, but I’m glad I never did. And at this point, I’ve been using it long enough that it’d have to become unusable for me to quit. Customization I also find Firefox more configurable and customizable than Chrome. I can do […]

Read More

I Like Purple (New Theme for katemwalsh.com)

Made a new theme for this site. Nothing super fancy. Basically just a Saturday project. I like purple and I like storms. I figured since this thing has been here almost a year, it was maybe a pretty good time to create an actual custom theme rather than relying on twentythirteen and slightly modified children. Built on Underscores with Waypoints, Sass, Grunt, Bourbon, and Neat. Thanks to jpaxonreyes@Flickr for the great header photo! Feedback welcome and appreciated!

Read More

Working with Mock-Ups and Web Graphics

As a front end web developer, you may not necessarily have to create mock-ups. By the time you see the design, it may be finalized already. The web designer is usually the one to make and work with mock-ups heavily. In larger team environments, you might never touch a mock-up aside from slicing it up and turning it into code. However — you will almost certainly have to work with mock-ups in some capacity as a front end web developer, even if you aren’t creating mock-ups. On the other hand, as a freelancer, or working in smaller teams, or as […]

Read More

Organizational Tools

Organization isn’t easy. What works for one person might not work for everyone else. To make matters worse, there are about a billion and two tools out there — it can be really tough figuring out what’s worth your time.

Read More

Fixed Position Click-to-Call Mobile Phone Number Code

The code here helps you show, for your mobile website only, a mobile phone number stuck at the top of the site, following the user as they scroll down the page. The HTML <span class=”desktop-phone”>(555) 555-5555</span> <a id=”floating-mobile-phone” href=”tel:+15555555555″>(555) 555-5555</a> The CSS /* ======================== mobile phone ======================== */ a#floating-mobile-phone { display:none; } @media only screen and (max-width:600px) { a#floating-mobile-phone { /*theming-related: colors, fonts, sizing, etc. edit at will*/ background-color:#558a93; color:#fff; text-align:center; font-size:18px; /*positioning-related: don’t edit unless you’re css-confident*/ display:block; position:fixed; top:0; left:0; width:100%; z-index:9999; } }

Read More

Local Development for Beginning Developers

Local development is the practice of using your local machine to develop websites or web applications. Didn’t know you could do that? Sure you can. A web server is basically a big, powerful computer — and you can install software and similar that can help you turn your local computer into a place where you can develop websites.

Read More

Web Design and Development Workflow

This is a post describing my workflow for creating a website from scratch. It’s not necessarily right, just descriptive of what I do. If you see any flaws or potential areas of improvement, please let me know. This is primarily relevant to personal projects, where I do exactly what I want regardless of what anyone else wants out of me. This is not likely to succeed in environments where you’re working on a team! Added — this isn’t really step-by-step. Sometimes I’ll go back to Photoshop after doing the colors in code to design some specific things. I definitely doodle […]

Read More

General Speed and Efficiency Tips

In real life, I’m frequently asked how I get fast at things on the computer. This guide addresses some common tips for speeding up at general computer use for beginners.

Read More

Working From Home (and Not)

At my new job I’ve had the opportunity to work from home more than a few times. I really like it. However, I also really like that I’m close enough to go into the office and physically interact with people, too. It’s the best of both, I think, in that I can work in-office and at-home. There are benefits to both.

Read More