<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Virginia, DC WordPress, Drupal Web Development Company - Web Development Group</title>
	<atom:link href="http://webdevelopmentgroup.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdevelopmentgroup.com</link>
	<description>Virginia and DC based WordPress, Drupal Web Development Company</description>
	<lastBuildDate>Thu, 17 May 2012 14:39:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Basics of Drupal Installation</title>
		<link>http://webdevelopmentgroup.com/2012/05/basics-of-drupal-installation/</link>
		<comments>http://webdevelopmentgroup.com/2012/05/basics-of-drupal-installation/#comments</comments>
		<pubDate>Thu, 17 May 2012 14:39:33 +0000</pubDate>
		<dc:creator>aemam</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[DC Drupal Development Company]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Virginia Drupal development and webdesign company]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=2093</guid>
		<description><![CDATA[When I first started using Drupal, I wanted to give up after about 5 minutes. If it weren’t for one of my colleagues showing me through the process, I probably would have. Drupal is a great CMS and I’ve come to love it but the learning curve can really stray people from digging into its [...]]]></description>
			<content:encoded><![CDATA[<p>When I first started using Drupal, I wanted to give up after about 5 minutes. If it weren’t for one of my colleagues showing me through the process, I probably would have. Drupal is a great CMS and I’ve come to love it but the learning curve can really stray people from digging into its full capabilities.</p>
<p>In this post, I want to walk you through setting up a simple Drupal 7 website that will allow you to post content and media.</p>
<p>First – Download Drupal 7 from <a title="dc drupal companies" href="http://drupal.org">Drupal.org</a>.</p>
<p>The easiest way to set up a Drupal site is using MAMP (for Mac) and WAMP (for Windows). This is a GREAT tutorial on how to install Drupal using MAMP &#8211; <a title="dc drupal website company" href="http://www.youtube.com/watch?v=oYAFTW3NZyY">YouTube</a> (this tutorial uses Drupal 6 but the setup is almost identical to 7) or if you prefer to read &#8211; http://drupal.org/node/66187. If you have a web server, it’s a similar process.</p>
<p>Once you have your site setup, you’ll notice that it doesn’t do much. Unlike WordPress, you don’t get much out of the box when it comes to Drupal. Let’s go over some simple terms that will help you understand how Drupal works.</p>
<p>1) <strong>Node </strong>– All content on a Drupal website is stored and treated as “nodes”. A node is any piece of content, such as a page, poll, article, forum topic, or blog entry.<br />
2) <strong>Content Type</strong> – Content Types are part of the structure of Drupal and layout how you define how pieces of content will be organized throughout the site. For example, blog posts, videos, status reports, etc. can all be defined as content types on your site. Each node belongs to a content type.<br />
3) <strong>Module </strong>– modules are a way of extending Drupal’s functionality. Think of it as little add-ons that that improve the flexibility of the site, however you only install what you need. This is both a burden and a curse. On one side, it can become very tedious to install every module you need each time you set up a site. On the other hand, it keeps your site very lean and keeps you from having extra stuff that will slow your site down.<br />
4) <strong>Views </strong>– views are a way of aggregating content types or specific fields of a content type. For example, say I have a general “Post” content type that includes the fields a) Name b) Time c) Header d) Image e) Body. Say I have 100 separate “Posts” and want a way to build a preview like page that gives users a snippet of what each post is about. Using Views I can tell Drupal – show only fields A, C and D. And when they click on any of these fields, it will take the user to the actual node and show all the fields. Views also allows you to set a path and a page but we’ll get into that later.<br />
5) <strong>Block </strong>– Blocks can be static content, an extension of a module, a view, etc. They are used to display content on certain sections of a page. For example, if you wanted to show the most recent comments that were posted on you site in the top right of the page. You could create a view that is a block that would display on every page of your site in that spot.<br />
6) <strong>Region </strong>– Drupal’s layout is defined by regions. For example, header, footer, content top etc. You can define regions in your theme.</p>
<p>7) <strong>Theme </strong>– themes allow you to change the look and feel of your site.</p>
<p>Step 1 – Install all the modules you will need.</p>
<p>Now that we have some Drupal theory out of the way, navigate to your Drupal install on your local machine to your-site-name/sites/all. There should be a modules and themes folder there (In Drupal 6 you have to create these).</p>
<p>Next we’re going to download the modules that we will be using.</p>
<p>Go to drupal.org -&gt; Download &amp; Extend -&gt; Modules. Here is the list of the modules we’ll be working with. Make sure to download the correct versions of the modules that correlate with your Drupal install. Since we’re using Drupal 7 ONLY DOWNLOAD DRUPAL 7 MODULES, otherwise your shit will break!</p>
<p>1) Media<br />
2) Media Youtube<br />
3) Ctools<br />
4) Views</p>
<p>Once you’ve downloaded these files, unzip them and place them in the “modules” folder. Then on your Drupal site, navigate Modules section on the main nav. There you will see check boxes next to a bunch of module names. You’ll notice that some modules require other modules. Make sure to always check for these dependencies, otherwise you won’t be able to enable these modules or enable them.</p>
<p>Things to enable:<br />
1) Ctools (This is packaged with other sub-modules, but you DO NOT need to enable these, just the main Ctools module).<br />
2) Media<br />
3) Media Youtube<br />
4) Media Internet Resources<br />
5) File Entity (included with Media)<br />
6) Views<br />
7) Views UI (this is the interface that you will use to create views)</p>
<p>Whenever installing a module make sure you Read the Documentation or the Readme.txt file that is included in the module which will give you instructions on how to install and configure it. Next, click save at the bottom of the screen.</p>
<p>Now you have all the modules you’ll need to create a website. **Note there are thousands of modules available for accomplishing all sorts of tasks. You can even write your own and contribute it to the Drupal community.</p>
<p>Step 2 – defining our content types</p>
<p>Our next task is to create content types that we will be using. So if we’re making a blog about music we’ll want to include certain fields in our pages. Click on Structure-&gt; Content Types-&gt;Add Content Type. Here is where we’ll define our custom type to include the fields that we want. You’ll see that Drupal by default supplies you with “Basic Page” and “Article”. The first field is the “name” which is what we’ll see in administrative menu. Let’s call it Music Post. When defining a content type, the Name can include spaces and uppercase but the machine name must be all lower case with no spaces. In Drupal 7, it automatically generates machine names (A very nice new feature). And under description we’ll say “A place to post music news, videos and images. Click “Save Content Type”.</p>
<p>Now we need to define our fields. . After clicking save, you should be at the content type settings page, if not navigate there. Now let’s add a field to upload images associated with our music pots. Under the Operations row, you’ll see “manage fields” for the Music Post content type. Once you click here it will prompt an admin interface which will allow you to add fields. . You see “Add new field” on the left. In the label textbox type “Artist Image” in the filed name, type “artist_image”, under type of data to store choose “Image” and in Form element select box, choose “Image”. Next we will be prompted to an admin screen to set the specifications for our field. Let’s leave it alone for now but feel free to mess around with this later. Save field settings.</p>
<p>Now let’s create a text field that allows us to create a headline. In the label text box put “Headline”, in the field textbox put “headline”, under type of data to store choose “text” and then choose “text field” under the second dropdown. Let’s set the maximum length of the textfield to 150 characters. Click save field settings.</p>
<p>Let’s add a video field. Before we add the video field, we have to enable the youtube player. Navigate to Configuration-&gt;File Types-&gt;Video-&gt;Manage File Display and check the “Youtube” checkbox. Save.</p>
<p>Now go back to your content Following the same instructions as before.<br />
- Label = Video<br />
- Field name = video<br />
- Type of data to store = Multimedia Asset<br />
- Form element to edit the data = Media file selector</p>
<p>Click save and an admin settings screen will prompt. Under allowed media types, enable video. Under allowed URI schemes enable YouTube. Everything looks good for now but feel free to change the display settings for the height and width of the Video in the future.</p>
<p>Once saved, make sure the display settings for the video field and the image field are set. Click the “Manage Fields” tab and make sure the video field’s format is set to Media. For the Artist Image field, you’ll see an icon to the right of “Image style: none (original image)”. Click the icon and choose medium. This setting automatically crops the image so that they all look consistent throughout the site. You can create a setting by defining a height and width using Image Styles in the site Configuration.</p>
<p>Almost there! Let’s rearrange how these fields are displayed. If you hover over the left of the label a 4 point symbol will prompt. Let ‘s click and drag the “Headline” and move it right underneath the title. Next lets move the “Image” right above the “Body” field. And finally let’s move the “Video” field right below the “Body” field. This will just change the way the post is displayed.</p>
<p>Let’s create our first post! In the sub-menu, you’ll see Add Content and select Music Post. For the Title field choose whatever you want. Since mine is about music I’m going to put “Rusko – Somebody to Love”. Under Headline I’ll put – “This is Rusko’s new single which features a great music video with live clips”. Under Image, lets select a file to include with the post. In the Body, just type in some text. In the Video field, go to the Youtube video page and click on Share, copy that link and then place it in the Video field. Click save and we just created our first piece of content!</p>
<p>Now create a bunch more posts (say 10) so that we have some content to play around with.</p>
<p>Step 3 – Creating a View</p>
<p>So now that we have all this content, let’s present it to the user in a better way. Most of the posts are going to take up a whole computer screen. But we want our users to be able to skim posts and click to “Read More”, almost like a news feed. Let’s use Views to accomplish this.</p>
<p>As mentioned before Views are a powerful way to aggregate information. So for our home page, I think we should only show the node “Title”, “Headline” and the “Image”. So navigate to Structure -&gt; Views -&gt; Add. New View<br />
- View name =&gt; Home Page<br />
- Description =&gt; A list of Music Posts that displays the Title, Headline and Image<br />
- Show =&gt; Content of type Music Post sorted by Newest first<br />
- Create Page =&gt; Make sure this is enabled.<br />
- Display Format =&gt; Unformatted list of fields<br />
- Items to display =&gt; 10 (make it whatever you want)<br />
- User pager =&gt; enabled (allows for pagination)<br />
- Click Continue &amp; Edit</p>
<p>Now we’re at the admin interface of our view. So where to begin. It’s always up to the user but I usually tend to start with the “Filters”. This does exactly what the title suggests, it filters information based on parameters we set. To backtrack (refer to the 3rd bullet point above) and explain how we got here, we only want Music Posts content types to display on this page. You can set as many filters as you want but we’ll leave it for now. Simply click the “add” button to add a new filter.</p>
<p>Now lets choose the fields that we want to show. Based on the three we’ve decided on let’s start with the Title (which should already be enabled, so we’ll do headline and image). Go to the Fields section and click the “add” button. Navigate to “Content: Headline” select it and click “Apply (all displays)”. Then a settings screen will prompt. We don’t want our Field to have a label (which Drupal usually creates automatically) so uncheck that. Some fields will give you the option to “link this field to its node”. Meaning it automatically makes that field a link that takes you to the full node. The Title field is already enabled this way. Everything else looks good so click apply.</p>
<p>Now Lets add the image. Click the “add” button and navigate to “Content: Artist Image (field_artist_image). Let’s uncheck the label option. For the “Image Style” property, I have mine set to “thumbnail” so that its not so overpowering. However, feel free to choose whatever you like and remember you can always create your own prefixed image settings in the Configuration section of the website under Format choose Image. And we have all our fileds. Finally lets link the image to the actual node. So under “link image to” select “content”.</p>
<p>Now the question is where does this page exist? You might have caught this in the previous step when we were setting up our views. But in case you didn’t you can always modify the url path underneath “Page Settings” in the Views admin interface.</p>
<p>Since this is our home page, we’ll want to make it a menu item. Underneath the path you’ll see a menu settings, click it. Now make sure it’s a Normal Menu Entry, choose your Title, i.e. Home Page, Menu = Main Menu and then click Apply.</p>
<p>Make sure you click Save in the upper right. Its good to periodically do this when working on your Views!</p>
<p>Congratulations we now have our first view! Alright let’s create one more. Let’s make a Videos page and displays all of our Videos and their Titles. Go to Structure-&gt;Views-&gt;Add View. Set the filter up the same way as the previous example. Now under fields we only want the Title and the Video (Title will already be enabled). Then lets’ choose “Content: Video”. Let’s set the label to none and click apply and then save.</p>
<p>Now make this page accessible by adding a url and a menu just like we did before.</p>
<p>Step 4 – Getting rid of all the loose ends</p>
<p>Well now that we have our pages, I think we should change our home page to the “Home Page” view. So navigate to Configuration -&gt; Site information. Under default front page at the very bottom, type in home-page. And now your home page will be set to this view.</p>
<p>To edit your menu, go to Structure-&gt;Menus. Then choose Main Menu and list links. Here you can set which menu items are enabled and change the order of the display.</p>
<p>Step 5 – Installing a theme</p>
<p>Drupal used to look pretty ugly out of the box with version 6. D7 is a huge improvement. We’ll need a place in your file directory to put the theme. In D6 you used to have to create this folder but with D7 it should already be created. Navigate to sites/all/themes.</p>
<p>Next go to drupal.org -&gt; Download &amp; Extend -&gt; Themes. A lot of drupal themes are bare bones, which allows for easier customization but we’re not on that level yet so we’ll save Drupal theming for another lesson. Some good starter themes are Danland, Blue Masters, Corporate Clean, etc. There’s tons so just choose one, download and unzip it. Now place that unzipped folder in your themes directory. **Note that some themes depend on other themes (just like modules), so be careful and read the documentation.</p>
<p>Now once it is in your themes directory, navigate to Appearance and find your theme. Click “Enable and Set as default”. Find the theme that you downloaded, enable it and set it as the default theme by clicking the checkbox. Click “Save Configuration” and voila, your site looks completely different.</p>
<p>In this article I barely skimmed the surface of what Drupal is capable of. I didn’t even touch on many key features that are essential. So now that you’ve got a good base, keep reading and experimenting with your Drupal site. There are thousands of modules that do awesome things that I don’t’ have time to go over. And who knows, if you stick with Drupal, you may be able to write a module of your own and contribute to vast community that helped build this powerful CMS.</p>
<p>Always remember don’t hack the core (if you don’t know what that means, Google it).</p>
<p>Posted by Grant Skalak – DC Drupal Developer for Drupal Development Company Web Development Group in DC</p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/05/basics-of-drupal-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal Terms for us silly people&#8230;</title>
		<link>http://webdevelopmentgroup.com/2012/05/drupal-terms-for-us-silly-people/</link>
		<comments>http://webdevelopmentgroup.com/2012/05/drupal-terms-for-us-silly-people/#comments</comments>
		<pubDate>Wed, 16 May 2012 19:46:24 +0000</pubDate>
		<dc:creator>aemam</dc:creator>
				<category><![CDATA[DC Drupal Development Company]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=2089</guid>
		<description><![CDATA[When I first started to learn Drupal the hardest for me was the terminology. I have moved on and I work with clients strategize and decide what content management system is best for them. When is start explaining the advantages or disadvantages of Drupal for a particular project and I used words such as Node, [...]]]></description>
			<content:encoded><![CDATA[<p>When I first started to learn Drupal the hardest for me was the terminology.  I have moved on and I work with clients strategize and decide what content management system is best for them.   When is start explaining the advantages or disadvantages of Drupal for a particular project and I used words such as Node,  Block and Region, I get the crazy eye look so hopefully an explaination of what the basic terms mean can help you better understand me.     </p>
<p>Simple Drupal Terms: </p>
<p>Once you have your site setup, you’ll notice that it doesn’t do much.  Unlike WordPress, you don’t get much out of the box when it comes to Drupal.   Let’s go over some simple terms that will help you understand how Drupal works. </p>
<p>1)	Node – All content on a Drupal website is stored and treated as “nodes”.  A node is any piece of content, such as a page, poll, article, forum topic, or blog entry.  </p>
<p>2)	Content Type – Content Types are part of the structure of Drupal and layout how you define how pieces of content will be organized throughout the site. For example, blog posts, videos, status reports, etc. can all be defined as content types on your site.  Each node belongs to a content type. </p>
<p>3)	Module – modules are a way of extending Drupal’s functionality.  Think of it as little add-ons that that improve the flexibility of the site, however you only install what you need. This is both a burden and a curse.  On one side, it can become very tedious to install every module you need each time you set up a site.  On the other hand, it keeps your site very lean and keeps you from having extra stuff that will slow your site down. </p>
<p>4)	Views – views are a way of aggregating content types or specific fields of a content type.  For example, say I have a general “Post” content type that includes the fields a) Name b) Time c) Header d) Image e) Body.  Say I have 100 separate “Posts” and want a way to build a preview like page that gives users a snippet of what each post is about.   Using Views I can tell Drupal – show only fields A, C and D.  And when they click on any of these fields, it will take the user to the actual node and show all the fields.  Views also allows you to set a path and a page but we’ll get into that later.</p>
<p>5)	Block – Blocks can be static content, an extension of a module, a view, etc.   They are used to display content on certain sections of a page.  For example, if you wanted to show the most recent comments that were posted on you site in the top right of the page.  You could create a view that is a block that would display on every page of your site in that spot.  </p>
<p>6)	Region – Drupal’s layout is defined by regions. For example, header, footer, content top etc.  You can define regions in your theme. </p>
<p>7)	Theme – themes allow you to change the look and feel of your site.  </p>
<p>Drupal is harder to understand then CMS’s such as WordPress and unlike WordPress, you don’t get much out of the box with Drupal which is why the basic terms used for the Drupal framework is important to understand.     </p>
<p>If you are looking for a DC Drupal Development Company feel free to contact our DC and Virginia Drupal Developers by sending us an email to <a href="mailto:business@webdevelopmentgroup.com">business@webdevelopmentgroup.com</a> or visit our <a href="http://webdevelopmentgroup.com/contact/" title="Drupal Developers in DC">contact us page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/05/drupal-terms-for-us-silly-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DC&#8217;s most favorite content management systems</title>
		<link>http://webdevelopmentgroup.com/2012/05/dcs-most-favorite-content-management-systems/</link>
		<comments>http://webdevelopmentgroup.com/2012/05/dcs-most-favorite-content-management-systems/#comments</comments>
		<pubDate>Wed, 16 May 2012 19:34:00 +0000</pubDate>
		<dc:creator>aemam</dc:creator>
				<category><![CDATA[DC Drupal Development Company]]></category>
		<category><![CDATA[DC Joomla Development Company]]></category>
		<category><![CDATA[DC WordPress Development Company]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Virginia WordPress webdesign and development company]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=2084</guid>
		<description><![CDATA[There are plenty of open-source content management systems to use but what are most popular ones? Depending on how advanced you need the content management system to be, what language it’s built in, and who is going to be using it, it can be a headache, and time consuming trying to find the “perfect” CMS [...]]]></description>
			<content:encoded><![CDATA[<p>There are plenty of open-source content management systems to use but what are most popular ones?  Depending on how advanced you need the content management system to be, what language it’s built in, and who is going to be using it, it can be a headache, and time consuming trying to find the “perfect” CMS for a project.       Our top four PHP based favorites for content management systems are WordPress, Drupal, Joomla, and ExpressionEngine (EE).  </p>
<p>As a DC based web Development Company, we see a tremendous traction and need for Drupal and WordPress implementations.   </p>
<p><strong>WordPress</strong> – Easy to install, easy to support, maintain and is also easy to find designers and developers for  – An overall great platform for beginners and non-technical content managers that can serve as robust blogging site or a website.   For developers the theming language is fairly simple and straightforward and has a tremendous development community.</p>
<p><strong>Drupal</strong> – Another powerful content management system that rules the Washington dc open source community.  Drupal is a pure CMS and framework and not just a blogging platform. An installation comes with a ton of optional modules that can add lots of interesting features like forums, user blogs, OpenID, profiles but most popular item is its Taxonomy module which allows for displaying related articles or content at multiple levels based on categories etc.  Great platform for sites with tons of data and high traffic.</p>
<p><strong>Joomla</strong> &#8211; Joomla 2.5 is very similar to Drupal in that it’s a complete CMS but is best used for simple and smaller sites.  Joomla comes with a decent admin dashboard, complete with intuitive drop-down menus and other features. The CMS also has great support for access control protocols like LDAP and opened.   We have a good amount of clients that use Joomla such as congressional members, associations and smaller businesses.</p>
<p><strong>ExpressionEngine</strong> &#8211; ExpressionEngine is packed with helpful features like the ability to have multiple sites with one installation of software but comes with a small yearly license fee.   There is a good community for EE but not as large or active as the WordPress or Drupal community.    ExpressionEngine runs large and small sites with the most popular being obama.com</p>
<p>Please to contact our Virginia and DC based <a href="http://webdevelopmentgroup.com/contact/" title="dc drupal companies">web development offices</a> to learn more about these platforms and which may be best fit for you.   </p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/05/dcs-most-favorite-content-management-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DC &amp; VA Graphics and Web Designers &#8211; Join our group and come to our Open House!</title>
		<link>http://webdevelopmentgroup.com/2012/04/dc-va-graphics-and-web-designers-join-our-group-and-come-to-our-open-house/</link>
		<comments>http://webdevelopmentgroup.com/2012/04/dc-va-graphics-and-web-designers-join-our-group-and-come-to-our-open-house/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 23:54:49 +0000</pubDate>
		<dc:creator>aemam</dc:creator>
				<category><![CDATA[DC Drupal Development Company]]></category>
		<category><![CDATA[DC WordPress Development Company]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Responsive Design]]></category>
		<category><![CDATA[Virginia Drupal development and webdesign company]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=2054</guid>
		<description><![CDATA[Graphic &#038; Web Design is very much its own form of art &#8230; Some would even say that it&#8217;s a lifestyle. If you live, breathe, love all that is web and graphic design, you&#8217;ve come to the right place. The goal of this group is to grow and work with an awesome niche of talent [...]]]></description>
			<content:encoded><![CDATA[<p>Graphic &#038; Web Design is very much its own form of art &#8230; Some would even say that it&#8217;s a lifestyle. If you live, breathe, love all that is web and graphic design, you&#8217;ve come to the right place. The goal of this group is to grow and work with an awesome niche of talent in which ideas, work, projects can be freely shared and collaborated upon. Let our group be another way to inspire you and take your talents to another level!</p>
<p>Join the group where you will be Drupal Developers, WordPress Developers and Web Designers! &#8211; Here is the link to register, and bring friends!!</p>
<p>http://www.meetup.com/DesignAnon/</p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/04/dc-va-graphics-and-web-designers-join-our-group-and-come-to-our-open-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal Development Experts in DC and VA area.</title>
		<link>http://webdevelopmentgroup.com/2012/03/drupal-development-experts-in-dc-and-va-area/</link>
		<comments>http://webdevelopmentgroup.com/2012/03/drupal-development-experts-in-dc-and-va-area/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 13:54:47 +0000</pubDate>
		<dc:creator>aemam</dc:creator>
				<category><![CDATA[DC Drupal Development Company]]></category>
		<category><![CDATA[DC WordPress Development Company]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Our Work]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=2035</guid>
		<description><![CDATA[WDG with its creative lab “BigisHuge” are the leading Drupal Experts in Washington DC and Virginia, serving clients in the DC Metro area and the world beyond. Our develpers have deep experience in Drupal going back more than six years, and can help you realize the full potential of the Drupal platform. Let us show [...]]]></description>
			<content:encoded><![CDATA[<p>WDG with its creative lab “BigisHuge” are the leading Drupal Experts in Washington DC and Virginia, serving clients in the DC Metro area and the world beyond. Our develpers have deep experience in Drupal going back more than six years, and can help you realize the full potential of the Drupal platform. Let us show you how open-source can work for your start-up, organization, business or cause.</p>
<p>Give our Virginia and DC Drupal development team a call at 703-652-7103 or email us at business@webdevelopmentgroup.com</p>
<p><strong>Drupal Development Service:</strong><br />
New Site Development: We begin all of our projects with an intensive discovery and research phase, dedicated to generating a solid infrastructure and architecture plan so you get the site you want with the features you needs at the right price: value and innovation.</p>
<p><strong>Drupal Data Integration: </strong><br />
From Salesforce, Eloqua, Fatwire, Google and other data points, WDG has extensive experience integrating third-party applications into Drupal.</p>
<p><strong>Drupal Migration: </strong><br />
WDG can upgrade your Drupal version or migrate your existing data or website into Drupal.</p>
<p><strong>Drupal Performance Services: </strong><br />
High-traffic Drupal websites take specific knowledge of caching, loading, server topology, load balancing and other performance issues specific to Drupal.</p>
<p>Additional Drupal Development Services: </p>
<p>•	Needs-assessment and strategic web consulting<br />
•	Graphic design and branding<br />
•	Drupal architecture<br />
•	User interface/experience design<br />
•	Theme development<br />
•	jQuery, AJAX and AHAH feature development<br />
•	Module engineering<br />
•	Scaling Drupal / High performance<br />
•	Optimizing Drupal for search engines (SEO)<br />
•	Administrator and site builder training<br />
•	Private training, customized to suit your specific needs such as themeing, module development</p>
<p>Contact our Virginia and DC Drupal development team a call at 703-652-7103 or email us at business@webdevelopmentgroup.com to discuss if Drupal is the right platform for your business.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/03/drupal-development-experts-in-dc-and-va-area/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Local Congressman Launches New 2012 Campaign Website</title>
		<link>http://webdevelopmentgroup.com/2012/03/newjimmoranforcongress/</link>
		<comments>http://webdevelopmentgroup.com/2012/03/newjimmoranforcongress/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 17:55:21 +0000</pubDate>
		<dc:creator>Homiera</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[DC Joomla Development Company]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Our Work]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Virginia Joomla development and webdesign company]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=2038</guid>
		<description><![CDATA[Welcome to the all new JimMoran.org campaign website! Built on open-source Joomla!&#8217;s platform, the new website for local Congressman Jim Moran&#8217;s campaign website not only offers visitors a user-friendly experience, but also boasts new features, such as an events stream, easy access to the opportunity to volunteer and donate, updated photo galleries, and a friendly Facebook [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to the all new <a href="http://jimmoran.org" target="_blank">JimMoran.org</a> campaign website!</p>
<p><img class=" wp-image-2039 alignleft" title="Homepage for http://jimmoran.org" src="http://webdevelopmentgroup.com/wp-content/uploads/2012/03/jimmoran-239x300.png" alt="" width="215" height="270" /></p>
<p>Built on open-source Joomla!&#8217;s platform, the new website for local Congressman Jim Moran&#8217;s campaign website not only offers visitors a user-friendly experience, but also boasts new features, such as an events stream, easy access to the opportunity to volunteer and donate, updated photo galleries, and a friendly Facebook stream that keeps website visitors updated on his social network happenings.</p>
<p>Designed and developed by Alexandria-based web agency, Web Development Group, the new campaign site maintains the traditional campaign blue and white scheme for Jim Moran.  Incorporated into that traditional color theme, the most obvious new feature of the new site is its ease of use, prominent throughout the site with a streamlined homepage, blog-styled news, and user-friendly navigation which is accessible throughout the website.</p>
<p>Learn more about the new campaign site for Jim Moran by visiting it at <a href="http://jimmoran.org" target="_blank">http://jimmoran.org</a>, or give us a call and we can discuss how we can make your next project <a href="http://webdevelopmentgroup.com/web-development-company-services/">larger than life</a>!</p>
<p>&nbsp;</p>
<p style="text-align: center;">#</p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/03/newjimmoranforcongress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to the NEW JoeBarton.com</title>
		<link>http://webdevelopmentgroup.com/2012/03/newjoebarton/</link>
		<comments>http://webdevelopmentgroup.com/2012/03/newjoebarton/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 09:00:41 +0000</pubDate>
		<dc:creator>Homiera</dc:creator>
				<category><![CDATA[DC WordPress Development Company]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Our Work]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Virginia WordPress webdesign and development company]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=2018</guid>
		<description><![CDATA[With a tight race coming up this year, Joe Barton&#8217;s campaign has turned it up a notch online.  Just landing on the homepage of http://joebarton.com, you know you&#8217;ve landed in Texas with the state flag and flower proudly displayed on the red, white, and blue website. Using DC&#8217;s leading WordPress and Drupal Web Development company, WDG, [...]]]></description>
			<content:encoded><![CDATA[<p>With a tight race coming up this year, Joe Barton&#8217;s campaign has turned it up a notch online.  Just landing on the homepage of <a href="http://joebarton.com/" target="_blank">http://joebarton.com</a>, you know you&#8217;ve landed in Texas with the state flag and flower proudly displayed on the red, white, and blue website.</p>
<p>Using DC&#8217;s leading WordPress and Drupal Web Development company, <a href="http://www.webdevelopmentgroup.com" title="drupal development companies in dc">WDG</a>, to design and develop a new website and content management system, Barton&#8217;s new congressional campaign design is a combination of pleasing aesthetics and a streamlined, organized structure powered by WordPress, a powerful open-source platform.</p>
<p>With the flexibility and ease of use that WordPress and its content management system is well-known for, Barton&#8217;s campaign is now able to easily maneuver within the administrative end of the site to update and add new content to showcase Barton&#8217;s priorities, upcoming events, and other essential information in a clean and viewer-friendly format.</p>
<p>Check the new site out for yourself at <a href="http://joebarton.com/" target="_blank">http://joebarton.com</a> and contact us for your own design/development needs!</p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/03/newjoebarton/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s March! Spring&#8217;s Around the Corner!</title>
		<link>http://webdevelopmentgroup.com/2012/03/its-march-springs-around-the-corner/</link>
		<comments>http://webdevelopmentgroup.com/2012/03/its-march-springs-around-the-corner/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 17:20:00 +0000</pubDate>
		<dc:creator>Homiera</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Just For Fun]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=2005</guid>
		<description><![CDATA[Hello Readers! Welcome to a beautiful start to the weekend! What an awesome way to start the month of March here in the DC Area!  Temps in the high 50s / 60s … Flowers starting to bloom! St. Paddy&#8217;s Day Parade coming up this weekend on the streets of Old Town! The last few weeks have [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Readers! Welcome to a beautiful start to the weekend!</p>
<p>What an awesome way to start the month of March here in the DC Area!  Temps in the high 50s / 60s … Flowers starting to bloom! <a href="http://www.ballyshaners.org/parade/parade_front.htm" target="_blank">St. Paddy&#8217;s Day Parade</a> coming up this weekend on the streets of Old Town!</p>
<p>The last few weeks have been busy busy busy in the WDG studios (stay tuned for some fun launch news!), but we always make sure to take time to step away from the screen, enjoy fresh air and learn about the latest of what&#8217;s going on around the internet.  Here are a few of the fun things we read about around the web this week!</p>
<p><em><a href="http://mashable.com/2012/02/29/facebook-brand-timelines-changes-marketing/  http://mashable.com/2012/02/29/facebook-brand-timelines-changes-marketing/  http://mashable.com/2012/02/29/facebook-brand-timelines-changes-marketing/" target="_blank">FB Timeline for Pages is Coming … Whether or Not You Like It -The Key Things to Know</a></em></p>
<p><a href="http://ads.ak.facebook.com/ads/FacebookAds/Pages_Product_Guide_022712.pdf " target="_blank"><em></em><em>Some Literature On the How-Tos for Timeline</em></a></p>
<p><em><a href="http://photojojo.com/store/awesomeness/iphone-rangefinder/" target="_blank">Another Way To Harness the Power of Your iPhone&#8217;s Kick@$$ Camera</a></em></p>
<p><em><a href="http://pinterest.com/kaylamking/treats/" target="_blank">Color Inspirations From Around PinTerest</a></em></p>
<p><em><strong>And Lastly, Just For Fun<br />
</strong></em><a title="http://www.digitaltrends.com/lifestyle/ikea-launches-86500-flat-pack-home-but-dont-worry-theyll-build-it-for-you/" href="http://www.digitaltrends.com/lifestyle/ikea-launches-86500-flat-pack-home-but-dont-worry-theyll-build-it-for-you/  http://www.digitaltrends.com/lifestyle/ikea-launches-86500-flat-pack-home-but-dont-worry-theyll-build-it-for-you/  " target="_blank">Your Future Home … Built With IKEA&#8217;s Hex Wrench! </a></p>
<p>Happy Friday!</p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/03/its-march-springs-around-the-corner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive Design is One Thing … But Responsive Text ??</title>
		<link>http://webdevelopmentgroup.com/2012/02/responsivetext/</link>
		<comments>http://webdevelopmentgroup.com/2012/02/responsivetext/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 14:57:42 +0000</pubDate>
		<dc:creator>Homiera</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[DC Drupal Development Company]]></category>
		<category><![CDATA[DC Joomla Development Company]]></category>
		<category><![CDATA[DC Ruby on Rails Development Company]]></category>
		<category><![CDATA[DC WordPress Development Company]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[mobility]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Responsive Design]]></category>
		<category><![CDATA[responsive text]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Virginia Drupal development and webdesign company]]></category>
		<category><![CDATA[Virginia Joomla development and webdesign company]]></category>
		<category><![CDATA[Virginia Ruby on Rails development Company]]></category>
		<category><![CDATA[Virginia WordPress webdesign and development company]]></category>
		<category><![CDATA[responsive design]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=1986</guid>
		<description><![CDATA[With the world on the go, and, more often than not,  on their smart phones and tablets, web design has strongly rebutted with Responsive Design.  Being able to view a cleaner, more mobile-oriented version of a website while on your iPad or Droid makes your typical audience&#8217;s UE so much better and pleasant versus having [...]]]></description>
			<content:encoded><![CDATA[<p>With the world on the go, and, more often than not,  on their smart phones and tablets, web design has strongly rebutted with <a href="http://http://www.smashingmagazine.com/responsive-web-design-guidelines-tutorials/#n1">Responsive Design</a>.  Being able to view a cleaner, more mobile-oriented version of a website while on your iPad or Droid makes your typical audience&#8217;s UE so much better and pleasant versus having a full-on site with all of its bells and whistles forced to be viewed within a 3&#8243;x 2&#8243; screen.</p>
<p>But now, the web world is trying to take mobile UE a step further by incorporating &#8220;Responsive Text&#8221; &#8212; essentially, changing typography and condensing the content of a web page down to the minimum that will directly get the point across to someone reading the text on their smartphone.  Cleaning up typography to be more streamlined for mobile devices, ok &#8212; yes, this can be clutch. Who wants to be viewing <a href="http://www.myfonts.com/fonts/positype/fugu/">Fugu</a> type in an 18pt font whilst on their Blackberry?  But dumbing down the actual text for a tablet or an iPhone … Is that really necessary?</p>
<p>I wonder whether Responsive Text can truly be justified.   Are we honestly so busy and on the go in our daily lives that we can&#8217;t be bothered with a  full page of content that, in all reality , our brains already scan through to pick out key words/points? (The typical brain in today&#8217;s world is trained to skip nonessential verbiage and fluff while reading any set of text … if you literally sit there and read every &#8220;the&#8221;, &#8220;but&#8221;, &#8220;a&#8221;, &#8220;says&#8221;, &#8220;and&#8221;, &#8220;or&#8221;, &#8220;to&#8221;, then you, my lucky friend, have been blessed with a relaxed life somewhere on a warm sandy beach sipping a delicious tequila sunrise without any cares in the world!)  Rather than minimizing for a smartphone, why not incorporate a preview blurb on your site&#8217;s mobile version that can then take the user into the full text should they choose to in their own right?  Let the reader decide if they want the Spark Notes of what you have to say while they&#8217;re hustling about their daily routines.  Not only will excerpts/blurbs provide readers of all device types the capability to enjoy the full intake of information provided on the web page, but it will also avoid the unnecessary extra steps to a web admin&#8217;s job of coding a page of content to specify what is shown on which device.</p>
<p>In the end, it&#8217;s going to be about preference and the audience, but Responsive Text doesn&#8217;t seem to be as useful as it could be in the world of flexible and user-friendly WordPress/Drupal themes … just yet … Let&#8217;s see where we go in the next wave in technology and mobility.  Maybe then condensing a 5-paragraph body of text down to a sentence will be deemed necessary.</p>
<p>If you&#8217;re interested in learning more about Responsive Design &amp; the pros/cons of Responsive Text, or just want to chat about your upcoming project,  give us a shout via the form to the right, or at info@webdevelopmentgroup.com!</p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/02/responsivetext/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Give Your Brain a No-Thinking-Allowed Minute.</title>
		<link>http://webdevelopmentgroup.com/2012/02/brainbreak/</link>
		<comments>http://webdevelopmentgroup.com/2012/02/brainbreak/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 18:03:29 +0000</pubDate>
		<dc:creator>Homiera</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Just For Fun]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://webdevelopmentgroup.com/?p=1994</guid>
		<description><![CDATA[Whether you are a web designer, developer, or front-end developer, there is an endless variety of inspiring developers out there using modern web building to show off their creative ideas and animation without the need for plugins such as Flash.  Good and simple ideas are the ones that blow you away and give you enough [...]]]></description>
			<content:encoded><![CDATA[<p>Whether you are a web designer, developer, or front-end developer, there is an endless variety of inspiring developers out there using modern web building to show off their creative ideas and animation without the need for plugins such as Flash.  Good and simple ideas are the ones that blow you away and give you enough inspiration to create your own HTML5 ideas.  It may even give you a conceptually pleasing experience and leave you playing on them for an embarrassing amount of time.</p>
<p><a href="http://mrdoob.com/projects/chromeexperiments/ball_pool/" target="_blank">Ball Pool</a> is one of those amusing websites combined with a brilliant and cool idea that is simple and dynamic.  Programmers and heroes such as Mr. Doob, Ricardo Cabello, who created Ball Pool, is one of the talented leaders to the geek tech world we live in.  Ball Pool is a simple concept that provides exciting interactive animation.  Who wouldn&#8217;t be intrigued by your blank browser filling up with multi-colored balls where you can drag your browser around and shake up the balls!  Or better yet &#8212; you can send the balls flying around the browser with a quick jostle of the browser window!</p>
<p>Just imagine, having a few minutes to kill and decompress.  Ball Pool is a perfect and fun site to let your brain zone out and be artistically entertained.  It&#8217;s a great way to recharge and keep you busy for plenty of time.  If you don&#8217;t like the background color or if you just want to be amused even more, you can double click on the background and change the color.  Or you can drag multi-color balls and even create new ones.</p>
<p>Be inspired with Mr. Doobs awesome effects <a href="http://mrdoob.com/projects/chromeexperiments/ball_pool/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdevelopmentgroup.com/2012/02/brainbreak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

