I was approached a few months ago with a project that sounded like a great opportunity: to design the UI and logo for the new WordPress Jobs web site (which my company does about 90% overall business on WordPress development). If you missed the announcement for the site, check it out. If you need WordPress consulting, you could go to the site, or you could go to the company who helped build the site
.
Archive for July, 2007
All posts written in July, 2007.
WordPress Jobs
back from vacation.
Amy, Evan, and I just got back from a vacation to the east coast to visit some friends and family. We got to see our friend Ken’s family first and then headed off to to my house our annual (39th) Evans’ family reunion. My grandmother and I took the euchre tournament this year (I have not had it since 2000) and we are all exhausted from all the traveling. I look forward to not driving for awhile…as well as using my high speed connection v. my parent’s dial-up. I only opened my laptop to watch some Curb Your Enthusiasm”. Back to normal posting this week!
My iPhone
I finally did it, I had to…I bought an iPhone and I have loved every minute of owning it. I had an appointment the second day I owned it and the person I met with wanted to “zoom the pictures like the commercials”. I also now have the ability to carry around tons of pictures and movies of my son, as well as some of my favorite Curb Your Enthusiasm so I can watch my favorite show while waiting instead of reading some lame magazine. Sure, the camera is not great, but it beats mine on my old Blackberry (there was none) – and the user interface is absolutely fabulous. Automatically detecting when I flip the iPhone over to change my view with music, pictures, etc is wonderful. It has a great weight and I am quite excited about it! Sure I miss hearing the Price is Right theme song when Amy calls, but I cannot imagine it will be too long before we can easily switch ring tones. Great work Apple!
css containers: one image, fixed width, rounded corners.
I use reuse a number of CSS/XHTML layouts everyday and feel it is time to share. This is the third of three articles in a series on how to create various CSS rounded corner or “fancier than a simple box” container with CSS and XHTML that work in IE 6, IE 7, Firefox 1.5, Firefox 2.0, and Safari 2.0. I have used this code on several large and small sites and have enjoyed the flexibility of both changing the height and the width. (Also see css containers: simple, fixed width, rounded corners, and css containers: fancier, fixed width, rounded corners..)
There are some sites where you need to have some flexibility with both height and width of the containers. This technique is known as the “ThrashBox” and I will not go into detail about it because it is well documented: ThrashBox. If you want to use something like this, there is a great web site that offers to create the graphic needed based on your input of color, height, weight, and corner radius. Check it out:Spiffy Box.
Busy Busy…
It is now after 8pm and I just got through my email for the day. I am not sure how it is with other self employed people, but by far Monday is always the busiest day. Time to sit back and watch some Big Love before I have to enjoy a day full of meetings. Hopefully by the end of the week, I will be able to finish up my CSS containers series.
CSS Containers: Fancier, Fixed Width, Rounded Corners
I use reuse a number of CSS/XHTML layouts everyday and feel it is time to share. This is the second of 4 articles in a series on how to create various CSS rounded corner or “fancier than a simple box” container with CSS and XHTML that work in IE 6, IE 7, Firefox 1.5, Firefox 2.0, and Safari 2.0. I created this code from scratch and use this for any fancier fix width boxes I might need for sites I create. Height is not fixed. (Also see css containers: simple, fixed width, rounded corners.)
The container:
.roundedBox {width:300px;}
.roundedBoxTop{height:10px; background: url(“/downloads/rounded-corners/top-rounded.gif”) no-repeat bottom;}
.roundedBoxMiddle{background: url(“/downloads/rounded-corners/middle-rounded.gif”) repeat-y; padding:0 10px 0 10px;}
.roundedBoxMiddle p {margin:0; padding:0;}
.roundedBoxBottom{height:15px; background: url(“/downloads/rounded-corners/bottom-rounded.gif”) no-repeat top;}
Content
This is a quick and easy way to do something that looks better than a square box.
The code:
.roundedBox {width:300px;}
.roundedBoxTop{height:10px; background: url("/downloads/rounded-corners/top-rounded.gif") no-repeat bottom;}
.roundedBoxMiddle{background: url("/downloads/rounded-corners/middle-rounded.gif") repeat-y; padding:0 10px 0 10px;}
.roundedBoxMiddle p {margin:0; padding:0;}
.roundedBoxBottom{height:15px; background: url("/downloads/rounded-corners/bottom-rounded.gif") no-repeat top;}
<div class="roundedBox">
<div class="roundedBoxTop"></div>
<div class="roundedBoxMiddle">
<h2>Content</h2>
<p>This is a quick and easy way to do something that looks better than a square box.</p>
</div>
<div class="roundedBoxBottom"></div>
</div>
General Information:
This is based on a simple graphic I created in Photoshop using the rounded corner box tool, a drop shadow, a stroke, and a left to right gradient. I then cut it up into three pieces: top, middle, bottom. *The .roundedBoxMiddle p {margin:0; padding:0;} is specific to my layout and is not needed if you want to use this.
tagging with tivo!
I recently got a second TiVo and hooked it up last night and to my delight, when I upgraded the software, I found out that I could now use tags with TiVo. First tag I will put in? “Sela Ward” followed by “Chicago”. I am a nut for Sela’s work as well as all movies/shows based in Chicago. Nice work TiVo!
css containers: simple, fixed width, rounded corners.
I use reuse a number of CSS/XHTML layouts everyday and feel it is time to share. This is the first of 4 articles in a series on how to create various CSS rounded corner or “fancier than a simple box” container with CSS and XHTML that work in IE 6, IE 7, Firefox 1.5, Firefox 2.0, and Safari 2.0. I did not create this code from scratch – but I will use it if I need something really simple and really quick. Height is not fixed.
The container:
b.rtop, b.rbottom{display:block;background: #FFF;}
b.rtop b, b.rbottom b{display:block;height: 1px;overflow: hidden; background: #9BD1FA;}
.jzcontainer{width:200px;background: #9BD1FA;margin-bottom:10px;}
.jzcontent{margin: 5px;}
.jzcontainer p{margin:0;}
b.r1{margin: 0 5px;}
b.r2{margin: 0 3px;}
b.r3{margin: 0 2px;}
b.rtop b.r4, b.rbottom b.r4{margin: 0 1px;height: 2px;}
Content
This is a quick and easy way to do something that looks better than a square box.
The code:
b.rtop, b.rbottom{display:block;background: #FFF;}
b.rtop b, b.rbottom b{display:block;height: 1px;overflow: hidden; background: #9BD1FA;}
.jzcontainer{width:200px;background: #9BD1FA;margin-bottom:10px;}
.jzcontent {margin: 5px;}
.jzcontainer p{margin:0;}
b.r1{margin: 0 5px;}
b.r2{margin: 0 3px;}
b.r3{margin: 0 2px;}
b.rtop b.r4, b.rbottom b.r4{margin: 0 1px;height: 2px;}
<div class="jzcontainer">
<b><b></b><b></b><b></b><b></b></b>
<div class="jzcontent">
<h2>Content</h2>
<p>This is a quick and easy way to do something that looks better than a square box.</p>
</div>
<b><b></b><b></b><b></b><b></b></b>
</div>
General Information:
Although it is very simple, I am not a fan of the code at all. My next example in this series will look at a fancier and more elegant solution for rounded corner containers. *The .jzcontainer p{margin:0;} is specific to my layout and is not needed if you want to use this.
feedburner services: free!
A big thanks to Demitrious for sending a link that made my 4th of July: Feedburner Free for Everyone. I have been using Feedburner for quite a long time now and have had some clients using their pay service which I was almost considering – now I do not as it is available for free. Now I can have “control” of my feed once again while still using Feedburner to manage my feed.
Apple Evolution
Something I saw that might be of interest: A visual representation of Apple’s products. Brings me back…
