Archive for October, 2008
PHP Required Fields
I spent a week trying to figure out the best way to make my HTML forms required. Of course I am using PHP that is tied to a My_SQL database. The best resources I was finding was using javascript, but it was either breaking down, not working effectively, and we have to remember some people [...]
Wordpress Images Not Aligned
If your images are not aligning correctly in your Wordpress CMS, it is because you are using a theme that was coded after Wordpress 2.5. Don’t worry, all you have to do is put in the following image alignment code into your theme’s stylesheet, and all is well.
img.centered {
display: block;
margin-left: auto;
margin-right: auto;
}
img.alignright {
padding: 4px;
margin: 0 [...]

