• Feed
  • About The Blog

    The Blogosaurus is a company technology blog from Louisville Web Development firm MIB Solutions. The issues on or blog range from our personal use of Wordpress, Joomla, PHP and Database programming, AJAX, Flash, and other web development languages and tools we use on our client's projects.

    The Blogosaurus was born in 2008, and continues to be a resources for Internet professionals and Google searches alike.

  • Categories

  • Archives

  • Recent Posts

  • Our Analytics


    9,383
    Unique
    Visitors
    Powered By Google Analytics
  • Look Around

  • Recent Posts

  • Categories

  • Archive for October, 2008

    PHP Required Fields

    Sunday, October 19th, 2008

    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

    Saturday, October 18th, 2008

    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 [...]