Archive for the ‘Web Design’ Category

Web design services

Contact me now to get started on your website. Need a wordpress blog or Joomla site? Let me get everything set up so you can get blogging. Websites starting at $299

CSS3 & HTML3

I have been working with CSS3 and HTML5 lately, and have found a lot of cool features in both, but of course IE has to be different and not support anything cool. IE does however support importing font-faces, which is a really nice feature if you can find some good open-source fonts. Go to fontsquirell.com to check out a bang load of free font faces to use.

It will be nice when IE decides to support rounded corners and shadows. All of the other browsers out there have picked up on this, now we just need IE to join in and then we will not need browser specific tags such as -moz or -webkit.

Here is a preview of what Firefox, Safari, Opera, and Chrome can do.

Now imagine that with no gradients, transparency, round corners, or shadows, oh and no image of the camera, because that was done using canvas. Yeah, pretty lame!

Installing Zend on Linux

I am installing Zend server and framework on my Linux box. I have already installed git and cloned the phpokc project. If I can get a basic framework going, I will be happy.

Going to PHP group

I will be attending the PHP Okc group tomorrow to listen to a discussion on local testing environments and version control.

update:
The meeting was good, we discussed using github as a collaboration repository and an easy way to do version control. The decision was made to rebuild the group website using Zend framework in order to give us some practice. We will be using github for our repository on this project as well.

<?php echo 'Hello OKC!'; ?>

Testing iPhone app for wordpress

This is pretty handy!

New Website

I have changed the site yet again! I don’t have a lot of time on my hands to completely build my own, I build web-sites all day, so here is my place to post what I think is cool, whether it be some code I have been working on or interesting articles.

Input Validation

Testing this highlighter

/********************** Input Validation ***********************/
function pwdChk(pass)
{

var p1=document.getElementById("primary-password").value;
var p2=document.getElementById("primary-password2").value;
if (p1 !== p2)
{

document.getElementById("pwdChk").setAttribute('style', 'display:block;');
document.getElementById("pwdChk").style.display="block";
document.getElementById("primary-password2").value='';

}else{

document.getElementById("pwdChk").setAttribute('style', 'display:none;');
document.getElementById("pwdChk").style.display="none";
}

}

Return top

INFORMATION

Change this sentence and title from admin Theme option page.