By Merv on 01 22, 12
Jennifer, known for her Sell With Soul real estate wisdom including books and mentering, has quite a following and wanted a new website for members to be able to Connect and collaborate. We took her concepts for Connect and turned it into a website that integrated jQuery extensively to provide her members an easy to use, postive web experience. Check it out at SWS Connect.
Features include:
Continue reading “Jennifer Allan's SWS Connect”
Posted in Portfolio
| Tagged jQuery, mySQL, PHP
By Merv on 10 10, 11
Google Calendar is a popular free service. Displaying the full calendar on a web page is relatively easy and Google will let you customize the look, include multiple calendars and specify the size (width and height). Examples:
Providence ... it was menat to be full calendar and
Raspberry Falls Community full calendar
Calendar content is also available in various access formats including URL link, iCal and RSS feed. We developed a custom widget display using the RSS feed. Each of these are designed to summarize calendar events/content for a specified period of time from today. Examples can be found in the right sidebar at
Providence ... it was meant to be and
Raspberry Falls Community
The Raspberry example also displays events from multiple calendars.
Contact us for more info.
Posted in Projects
| Tagged Calendar, Google, MT Widgets, PHP
By Merv on 04 25, 11
A major upgrade to the Raspberry Falls HOA Website was installed in March 2011. The new site was built on the Hybrid News Theme with a private residents blog utilizing the MT Community features. The objectives for the new site are:
- Promote the Raspberry Community (first and foremost), local area and region as a desirable place to live
- Provide convenient access to FAQ's about the community and HOA
- Provide a way for residents to advertise their homes for sale (featured on the Home page slider)
- Provide the private site for residents to easily share information, dialog and stay informed about community and HOA activity
Continue reading “Raspberry Falls HOA (upgrade) ~ Leesburg, VA”
Posted in Portfolio
| Tagged jQuery, mySQL, PHP
By Merv on 12 18, 10

First web building project using sureWebBuilder, a Content Management System (CMS) offered by our hosting provider icdSOFT. A simple, nice design using one of the CMS templates. Many features were added including JavaScript slide shows and Facebook interfaces.
The Facebook interfaces includes:
- Facepile: The Facepile plugin displays the Facebook profile pictures of users who have liked your page or have signed up for your site.
- Like Button: The Like button lets a user share your content with friends on Facebook.
When the user clicks the Like button on your site, a story appears in
the user's friends' News Feed with a link back to your website.
- Like Box: The Like Box is a social plugin that enables Facebook Page owners to attract and gain Likes from their own website.
- Comments: The Comments Box easily enables your users to comment on your site's content
These new features turn your website into a social site!
Check it out at
leesburg-vintner.com.
Posted in Portfolio
| Tagged CMS, Facebook, icdSOFT
By Merv on 12 18, 10
project home page
template selection
click images for large view
icdSOFT recently released sureWebBuilder, a new Content Management System (CMS) that is easy to use and highly customizable. The Objective: Rapid development of custom websites at a low cost.
Features:
- Multiple projects on the same server
- Nice template selection (over 70) to get started and is very user friendly
- Unlimited number of pages and can be nested
- Header and footer areas can be designated as "global" or "local"
- Easy to use WYSIWYG interface
- Easy to use file management system for images, documents and media
- Easy to add custom JavaScript and css files.
- Good backup features and each page remembers revisions which can be reinstated.
Overall, a good alternative in a world with many CMS options. Contact us if you would like to learn more.
Posted in News
| Tagged CMS, web builder
By Merv on 12 10, 10

Learn something new every time I try something different and in this case it has everything to do with browser interpretation of standards. Example:
Look to the right and you will see images used to select the color theme for our website. I am using $_GET to pass the color selection. There are subtle differences in how browsers will present the $_GET data in the URL. Here's what I started with using Firefox:
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="get">
<input type="image" name="color" value="gray"
src="<mt:StaticWebPath>images/user/color-gray.png"
alt="gray image" title="Click to change style to gray"
style="width: 25px; height: 25px; padding-right: 5px;" />
...
more <input> with name="color" value="name of color"
...
</form>
In my php routine I used the familiar isset function on $_GET and if set used the key value of 'color' to set the $color variable like so:
if (isset($_GET['color'])) $color = $_GET['color'];
Worked great in Firefox as the URL had the following parameters when clicking the Gray image (notice the color=gray parameter highlighted in red):
/index.html?color.x=12&color.y=11&color=gray
BUT ... Internet Explorer (7 and/or 8) does NOT pass all the same parameters ... Here's the URL with parameters provided by IE (notice the color=gray is not passed, only the coordinates of where I clicked on the image):
/index.html?color.x=12&color.y=18
SO, off to modify the php form handler to accommodate yet another IE interpretation of HTML standards. I renamed each input with its unique color ...
<input type="image" name="gray" value="gray"
src="<mt:StaticWebPath>images/user/color-gray.png"
alt="gray image" title="Click to change style to gray"
style="width: 25px; height: 25px; padding-right: 5px;" />
and the URL looked like this when gray is clicked
/index.html?gray.x=12&gray.y=18
And the php code (note: gray.x will be changed to gray_x in php):
if (!empty($_GET))
{
// Just need to extract the color in the first key in the $_GET array
$color_keys = (array_keys($_GET));
// Then remove the _x to just get the color name
$color = str_ireplace("_x","",$color_keys[0]);
}
Now it works the same in both browsers.
:-)
Posted in Coding Tips, Technology
| Tagged $_GET, form, html, php
By Merv on 12 03, 10

I just completed modifying the style sheets to generate Hybrid News in more colors. Here's a sample of the blue-gray rendition. Light, interesting and easy to read.
Other colors included red, raspberry, green, Hybrid News Lite (blue), yellow and gray. See the color samples below:
Contact us to order the custom css files.
Posted in News, Projects
| Tagged blue, color options, gray, green, Hybrid News, light gray, red, yellow
By Merv on 01 12, 10
We have wide experience installing Movable Type on a variety of hosting services including:
icdSOFT
GoDaddy
PAIR
Mid-Phase
We have installed most all versions of MT from V2.6 through the current V4.35. Options include:
Standard MT
Professional Pack
Community Pack
Need More?
Community Blog? YES
Forum? YES
Motion? YES
Hybrid Theme? YES
Notifier? YES
Major Plugins? YES
Google Map Integration? YES
Google Calendar Integration? YES
SimplePie Integration? YES
Lightbox2? YES
If we haven't done it, we can do it. Our broad experience brings you best practices.
Contact us for a quote for your install.
Posted in MT Installation
| Tagged Blogsite, install, open source, Plugin, software, Website
By Merv on 01 02, 10
Software selection and integration becomes a critical step in the development of Websites. Our approach depends on user requirements which may range from very simple to complex. We always attempt to satisfy requirements using free, open source solutions to keep development costs as low as possible.
We use and recommend an underlying Content Management System (CMS) as apposed to manual development of Web pages allowing for rapid development, reduced cost and allowing users to ultimately manage Website content. Our development approach is based on the Movable Type platform:
Continue reading “Software selection and integration”
Posted in Services, Software Integration
| Tagged integration, open source, software
By Merv on 01 01, 10
Our Website development approach follow these basic philosophies:
Deploy an administrative platform that supports
1. a content management system (CMS) allowing end user content maintenance
2. a web browser "style sheet" system for flexible design
3. Web 2.0 capabilities for possible visitor interaction
4. capability to easily integrate third party software
5. adherence to Web Standards
6. cross browser compatibility (i.e. Internet Explorer 6, 7, 8 and Firefox)
Choose a Web Hosting company that
1. supports industry standard software
2. is responsive for maximum user/visitor positive experience
3. has a record of 99.9% plus up time
4. is cost effective
Maximize search engine optimization (SEO) by
1. creating web pages which are search engine friendly
2. deploying key search terms in page titles and content
3. submitting "site maps" to search engines for easy indexing
Site development using a live 10 step "Cascading" method:
1. choose a color palette consistent with organization branding
2. design a navigation scheme
3. design/refine page layouts
4. create shell pages
5. select appropriate graphics to be used
6. integrate third party software (i.e. Calendar)
7. add/edit page content
8. engage user in every step
9. iterate over steps 2 through 9 to refine presentation
10. announce public launch
Use free, open source software and/or services whenever possible to reduce development/maintenance cost
Posted in Approach, Services
| Tagged Blogsite, development, Website