Archives For Jesse Orndorff

We live in a busy world. Endless amounts of data are being presented to us, and all of them are fighting for a small piece of our attention. If you are like me and spend a decent amount of time online, it’s easy to find yourself distracted by constant interruptions. Not only interruptions, but I am discovering that I am always wanting to do more “things”. These things might be hobbies, building a new web app, discovering something to do in the area, or just spending time with my wife.

I find myself looking back at a day, wondering where the heck did the time go? If I am honest with myself, I find that this time creep comes in when I am highly unfocused during my day. So how do we become more focused? How do we build habits that keep us focused on our jobs, our families, and our activities?

Continue Reading…

I am starting a new, hopefully weekly, feature were I review various church website services and offerings. This week I wanted to take a look at a WordPress theme from ChurchThemes.net. I was initially very impressed with their offering and designs. It appeared to me that maybe finally a theme company could put great efforts into their design, and functionality, not only in their code.

Does Urban Theme deliver what your church will need? Keep reading to find out.

Continue Reading…

Everyone who writes code does it a little differently. Sometimes we get lazy, or we don’t know any better, or there isn’t a clear standard. I have worked with a lot of different freelance coders and everyone has their own coding style. Today I wanted to share a little tip that I have recently had my team doing to better organize our CSS properties.

For years I was ordering my CSS properties by type, but every time I had to go back (months later) to make a change, or edit someone else’s code, I found that it really made it hard for others to edit.

Here is a sample of what my code looked like:


.class {
   border: 1px solid #FFF;
   width: 100px;
   padding: 20px;
   height: 100px;
   position: relative;
   z-index: 1;
   border-radius: 20px;
}

So, I switched to ordering my properties alphabetically, which makes sense in my head, but I think as coders we could all save each other a lot of time if we did the same thing!

Here is what the code looks like now:


.class {
   border: 1px solid #FFF;
   border-radius: 20px;
   height: 100px;
   padding: 20px;
   position: relative;
   width: 100px;
   z-index: 1;
}

If you have OCD about your code, this is a great way to organize your code! At Bearded all of my developers are now coding their CSS in this fashion so it is quicker for another coder to step in and edit.

So, how do you organize your CSS?

Proverbs is a wealth of wisdom, because of this, my wife and I love to read a chapter before bed. As creative people, God has given us a special kind of wisdom, we see His creation in a different way that others. We also take great joy in expressing that view of the world through our art, in the things we create.

By wisdom a house is built, and by understanding it is established – Proverbs 24:3

Wisdom is important, but as this verse says: “by understanding it is established.” It doesn’t say by our hard work it is established. It doesn’t say that by my own effort a house is established.

God is telling us we need to not only have wisdom, but we need to understand Him. We need to understand who He is, what He has called us to do, and to understand why we see the world in the way that we do.

Do you have an understanding of why you view the world in the way that you do?

I am writing a series of posts about setting goals for your church website. I’ve talked about goal setting before. In this post I want to introduce you to the idea of setting smart goals for your website. We all know that goals are important. In every aspect of our lives we must set goals. Your church website is no different. The big question is are you being smart with your goals?

Continue Reading…

The Old & New Project launched last week and it is an amazing showcase of illustrations from the bible. The Old & New Project features three new illustrations a week which you can order as prints. All of the proceeds go to the blood:water mission.

Very soon my office will be decked out in illustrations from Old & New, the designs are fantastic!

Check it out: http://oldandnewproject.com

I am running a test. Something that might drastically change how a user interacts with Church Website Ideas. Last night I removed the search field from this site in a effort to test an idea I had. It all started when I wanted to find an old blog post I wrote, so I did a quick search using a keyword and, nothing! I couldn’t find the post, or anything really relevant. Not a good user experience.

A Quick Look at the Numbers
I thought that if I am having trouble finding things, then I bet others are too. I took a quick look at my Google Analytic data and noticed in one week, 21% of people searching this site we bouncing off as soon as they hit the results page. This can mean a few things, but I read it as: 21% of our users are not finding content and leaving the site. Not something I want to be known for.

Continue Reading…

I love WordPress. When done right, using WordPress for your website is a great choice for a CMS. Unfortunately for churches, there are not a lot of choices when it comes to beautiful church WordPress themes. I spent some time digging for quality themes churches could use, and I found 8 that stood out over what is out there. All of these are paid themes and their features very.

Have a theme you love? Share in the comments! Enjoy!

Continue Reading…

Why I Started Running

Jesse Orndorff —  February 27, 2012 — Leave a comment

From time to time I post random things from my life in a effort to possibly help encourage people. I want to share part of my journey with you. Running has a ton of benefits, we all know why we should run, but I wanted to share with you a few reasons why 18 months ago I started running.

Here is my story, why I love running, and how it helps me as a creative.

Continue Reading…

It seems like responsive web design is here to stay. I recently started designing and developing my new projects around the responsive web design methodology. Designing and developing with multiple screen sizes in mind, presents a whole new set of challenges for designers and developers.

I have put together a list of some great tools I have used to help make my new responsive websites work.

Continue Reading…