We build highly customized sites that are designed to reflect the owner’s aesthetic sensibilities, anticipate growth and modification, and provide an optimized experience for human artificial users.
Whether it be a fresh new website, enhancing performance and functionality of an existing website or recovery from threat or malfunction, our process ensures an efficient environment that follows best practices while being easy to work with.
We have proven that highly customized sites do not need to be complicated to manage or difficult to navigate, we make the complex simple and intuitively comprehensible.
We provide a stable, flexible and secure platform along with the support and training needed so that you may confidently manage your message!

  • Setting a condition for home page

    is_front is more bullet proof < ? php if (is_front_page()){ wp_nav_menu(array(‘menu’=> “Front Page Menu”)); } else{ wp_nav_menu( array( ‘theme_location’ => ‘primary’ ) ); } ? >

    read more…

  • Search icon driven search form in navbar

    /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( ‘html5’, array( ‘search-form’, ‘comment-form’, ‘comment-list’, ‘gallery’, ‘caption’, ) ); IN FUNCTIONS FILE ‘primary’, ‘menu_id’ => ‘primary-menu’ ) ); ?>

    read more…

  • Print styling

    Occasionally I still bump into people who want to print out pages from a site. Dictating these styles is done via a media query at the bottom of the style sheet and the styles included are generally meant to hide elements which are irrelevant to a printed page. /* Print Style Sheet */ @media print…

    read more…