Tag Archives: website

engagement-pictures-oak-trees-pier-myrtle-beach-state-park013

Engagement pictures by the oak trees and pier and responsive design website updates


February 10th, 2013

January and February are always my really slow time of the year. In some ways it is good because I can do some things I don’t have as much time for the rest of the year. I really make an effort to follow up with previous clients that have’t placed picture orders yet. I also try to get up with wedding clients that haven’t given me their album selections yet so I can get the layouts and orders done.

I also have more time to work on my website. I’m constantly optimizing the code, one big change I made this year was to make the site completely responsive using HTML5. What this means is the site and photo galleries will not only work on any size device such as an iPad or smartphone, but it will scale to fit the screen perfectly. A well designed website today, when you view it on a tablet or phone, you shouldn’t need to zoom in and out of the page. The page should scale itself to fit the screen properly, which my site now does. I was just checking around some other photographer’s websites recently, such as the really big multi-location photographer that has been in this area for a long time. When you visit their website on an iPad it says you need to download Flash Player and it hardly works.  That is just ridiculous in my opinion, today your website is your storefront.

Back to the pictures, it was nice to have some engagement pictures to do, it’s been a few weeks since I had a client. I was a little worried at first, like most guys it was really hard to get him to be romantic and smile. I’m sure I would be the same way myself if I was trying to do pictures with my wife. But once we got warmed up I thought things went really well.  I hope you enjoy some of the pictures below, I’m going to make an effort to post more regularly when things pick back up.

Creating Apple.com style HTML5 box gradients


January 24th, 2012

The title of this post probably just turned off most readers, but if you make your own website you should read on.  Anyone who has followed me for long knows I’m into website design, not the out of date Flash sites, but using modern techniques like HTML5 and CSS3.  You will miss a lot of subtle effects on my website if you are not using a modern browser, of course everything will still work.

I figured if there is a company that knows subtle style it would be Apple, of course after their leather bound iPad calendar app this could be argued.  Their website uses very little color, just some very slight shades of grey, except for their products that really pop off the page.  You might notice my website tries to do the exact same thing with my photography.

I was studying Apple’s website, and like the way boxes that contain information look, for example on their store page.

It might be hard to see in this picture. But the box has a very slight gradient that gets much stronger near the bottom of the box.  There is also a very slight drop shadow on the bottom that makes the box looked slightly raised off the page.  I don’t know how Apple does it, but I thought I could do this with CSS3.  This means the effect can be done without using any images or gradients made in Photoshop.

While you could try to figure out the code for this manually.  The gradient generator from Colorzilla.com http://www.colorzilla.com/gradient-editor/ is fantastic.  It can create gradients similar to Photoshop that have color stops that work in most web browsers, even older IE versions. What the color stop lets you do, is instead of having a gradient that changes shade evenly from top to bottom, you can do, like Apple does, and have it change very little until the bottom portion of the box where it increases.  Here is the exact code I use to get a very similar gradient as well as drop shadow on my boxes like on the Apple Store website, even a slight roundness to the corners. To put a box like this anywhere on your page just use something like . . .

<div class="myBoxes">Whatever I want inside</div>

Then in your css file . . .

.myBoxes {
padding: 10px;
background: rgb(255,255,255);
/* Old browsers */ /* IE9 SVG, needs conditional override of 'filter' to 'none' */background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2ZkZmRmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmN2Y3ZjciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(253,253,253,1) 75%, rgba(247,247,247,1) 100%); /* FF3.6+ */;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(75%,rgba(253,253,253,1)), color-stop(100%,rgba(247,247,247,1))); /* Chrome,Safari4+ */;
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(253,253,253,1) 75%,rgba(247,247,247,1) 100%); /* Chrome10+,Safari5.1+ */;
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(253,253,253,1) 75%,rgba(247,247,247,1) 100%); /* Opera 11.10+ */;
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(253,253,253,1) 75%,rgba(247,247,247,1) 100%); /* IE10+ */;
	background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(253,253,253,1) 75%,rgba(247,247,247,1) 100%); /* W3C */;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7',GradientType=0 ); /* IE6-8 */;
	-webkit-box-shadow: 0px 1px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 0px 1px 0px rgba(50, 50, 50, 0.5);
	box-shadow: 0px 1px 0px rgba(50, 50, 50, 0.5);
border: 1px #CDCDCD solid;
border-radius: 5px;
}

This may look complicated, but play around with the gradient generator and you can make your own easily.  Or if you want to try my code, just paste this into your CSS for any <div>. There is a small hack you have to do to get it working properly in IE9, but it explains how to do it on Colorzilla’s site.  I hope any web developers find this helpful, if you do or if you need more explanation let me know in the comments below.

New Website Layout


April 21st, 2010

I’m sure anyone that has been to my website in the past will notice a big difference in its look. My goal was to make everything look a lot cleaner and to highlight my pictures better without distractions from the site itself. I modeled the site after some other wedding photographers as well as some other popular websites as well. I was going for really clean code that will load quickly, and look great on the iPad as well. There are still some photo galleries that use Adobe Flash because it’s the only way I can pull my images from Flickr in real time. The first page of my site will be viewable on the iPad, but to see the other galleries you have to visit a custom page. Hopefully one day there will be alternatives to everything that Flash does. At least my whole site isn’t built on Flash like many photographers, for the most part it’s clean html code. I find it ridiculous when you visit a photographer’s website on the iPad and you just get a message, download Adobe Flash, without any other content. I don’t know if some web developers yet realize Flash websites are dead.  Many sites look fancy, but have very little good content.  I hope everyone likes the new site and finds it useful.

New iPhone and mobile website


March 22nd, 2010

I’m working on a new mobile version of my website. I’ve got it almost the way I like it now.  It has special photo galleries that work great on the iPhone and on Android.  It has most of my pricing information as well, just not all the details about my business that are on the main site.  I also got a WordPress plugin so now this blog will also look good on your mobile as well.  Overall you should have a pretty nice experience visiting this site on a mobile phone.  I think I’m about to the point now I must have one of the most functional websites of any Photographer.  A lot of them build fancy sites on flash, but they don’t have the compliant clean html code and have all the really useful information and functionality of this site.