Blog

Bud Light builds its own town ‘Whatever USA’ in Crested Butte, Colorado

Bud Light began its “Up for Whatever” ad campaign in ads for Super Bowl XLVIII where random fans off the street were sent on crazy celebrity-filled adventures. For this promotional campaign Are You #UpForWhaterver happening September 5-7th, Crested Butte will become the ficticous town of Whatever, USA. Bud Light has selected 1,000 fans across the […]

A custom jQuery method to AJAXify forms with .AJAXify()

// Function to AJAXify forms $.fn.AJAXify = function(resultscontainer){ // Check if the element is on the page first if(this.length){ // Keep track of original element var og = this; // Unbind submit event this.submit(function(e){ // Initialize e.preventDefault(); var postobj = {}; // Loop through each child element and add to post object og.find(‘input, textarea, select, […]

A Parent’s Story

Many people believe that as an online marketing agency we are just an automated branding company. That we just provide improved SEO results or higher Pay Per Click conversion ratios. Although those are two facets of our work, at Off The Wall Media we truly believe you need to make an absolute effort to bring […]

Montreux Energy project

Off The Wall Media recently worked with Montreux Energy, a senior-level strategy organization for roundtables on the future of global energy investment. Off The Wall Media enhanced their website cleanenergy.com, to improve UX and ROI. The outcome was a user friendly website that provides solution driven content to Montreux Energy’s clients. Take a look and […]

Help Off the Wall Media Fight Epilepsy

Off The Wall Media will make a $1 donation to the Epilepsy Foundation, for each new like we receive on Facebook through December 25th (up to 500 new likes). Share and Like this post on Facebook to help us find a cure and raise epilepsy awareness: www.epilepsyfoundation.org.

Twitter Trends Map

Many people wonder what the heck people are really talking about on Twitter and Facebook. With this amazing site you are able to see in realtime what people are talking about. This incredible marriage of Twitter and Google Maps APIs create a phenomenal global look at topics that are trending worldwide. Check it out! trendsmap.com

Add qTranslate support to Contact Form 7

For those of you using WordPress that would like a non-intrusive simple way to add qTranslate support to your Contact Form 7 contact forms, here’s a simple snippet you can insert into functions.php: // Add qTranslate support to contact form 7 add_filter(‘wpcf7_form_elements’, ‘rl_wpcf7_form_elements’); function rl_wpcf7_form_elements($content){ if(function_exists(‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’)){ return qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($content); } } add_filter(‘wpcf7_form_class_attr’, ‘rl_wpcf7_form_class_attr’); function rl_wpcf7_form_class_attr($content){ if(function_exists(‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’)){ […]