Website Design Westchester | Graphic Design New York | Online Marketing Westchester | SEO NY | Corporate Branding Westchester New York | Application Development NYC


Getting Rid of The Border in a Textarea and Input Box in IE7

February 22nd, 2011

I worked on this issue for a good two hours. I know it sounds silly, but for some reason IE 7 wouldn’t get rid of the border around the text box. Well I researched the issue and everyone kept giving crazy solutions like putting a span around it and put the border there, put border-color:transparent, and a few other ridiculous ideas.

The simple solution was to just hard code the styling in the input or textarea. Like:

<textarea style=”border:none;”></textarea>

And that’s it!!!! Fixes the issue!

StumbleUponLinkedInGoogle+DeliciousDiggShare

Google Web Toolkit adds HTML5 canvas backing

February 15th, 2011

By Paul Krill | InfoWorld

Google and JetBrains are offering on Monday technology upgrades in the HTML5 and PHP application development spaces respectively with Google upgrading GWT (Google Web Toolkit) and JetBrains adding to its PHP IDE.

With GWT 2.2, for building browser applications, Google is including support for HTML5-specific features, such as the canvas 2D element and the embedding of audio and video tags. “These APIs are still experimental and may change a bit over the next couple releases, but we feel that they’re stable enough to deserve some real mileage [by you],” said Chris Ramsdale, of Google Developer Tools Team, in a blog post.

[ HTML5 will be finished in 2014, the World Wide Web Consortium said on Monday. | Get your websites up to speed with HTML5 today using the techniques in InfoWorld's HTML5 Deep Dive PDF how-to report. ]

But GWT version 2.2 (Zip file) will have only deprecated support for Java 1.5, resulting in warnings when building applications. “While Java 1.5 will still work for this release of GWT, developers should upgrade their version of Java to correct these warnings and ensure compatibility with future versions of GWT,” said Ramsdale.

Google also is offering Google Plugin for Eclipse 2.2, which integrates the GWT Designer AJAX user interface designer. Google Plugin for Eclipse makes it easy to deploy and run applications on the Google App Engine cloud platform, Google claimed.

Version 1.4.2 of the App Engine SDK, released late last week, features an improved XMPP (Extensible Messaging and Presence Protocol) API to help applications better interact with users, Google said. With XMPP, notifications are sent when users sign in and out. The application can set presence details for a user. Task Queue performance and Task Queue API improvements in version 1.4.2, meanwhile, include increasing the rate at which tasks can be processed to 100 tasks per second.

An API added in the new version of App Engine allows for programmatically deleting tasks instead of managing this manually from the admin console.

JetBrains is releasing its PHPStorm 2.0 PHP IDE. It features support for PHP 5.3 namespaces and closures, ECMAscript 5, and Less and SASS (Syntactically Awesome Stylesheets) extensions for cascading style seets. Less features a dynamic stylesheet language while SASS extends CSS with nested rules, variables, and other features.

Version 2.0 also has a streamlined UI. Debugging has been improved with a zero-configuration debugger, JetBrains said. More code inspection is featured, as well as automatic code completion and GitHub repository and Mercurial source code management integrations. Editors are included for SQL queries.

StumbleUponLinkedInGoogle+DeliciousDiggShare

Best practices for coding HTML emails

June 14th, 2010

Even if you’re able to code complex website layouts, coding an html email is a hard job and there’s lots of things to take into consideration. This article features the most important things I’ve learned in 5 years of coding html emails.

Keep it simple and lightweight

If you have to remember only one of all the tips I’m going to give you in this post, it should be this one. In fact, an html email is not a website, so you shouldn’t try to embed a website into an email.

Some years ago, I used to work for a French TV channel and I often had to slice some PSD’s into html emails. The PSD’s contained gradients, funky fonts, and even animated gifs. As a result, the work (despite all efforts I’ve put in it) looked different from one email client to another, the fonts had to be replaced by Arial, and the whole email was extremely heavy and highly relied on images.

On the other hand, a simple html email will loaded smoothly, and will be more pleasant to read.


(Yoast.com Newsletter)

Don’t abuse images

An image is worth a thousand words, but it may also take forever to load. I have received many emails that consisted of a few lines of text and nothing else but big images. As a result, the recipient had to wait until the image was loaded (Which can sometimes takes up to 5 seconds!) in order to read the information embedded in the email.

This is, in my opinion, a waste of time for the recipient, as well as a waste of money for the sender: Most people won’t wait 5 seconds in order to have the big image you send them loaded. They’ll trash the email. It’s as simple as that.

An html email should be beautiful and pleasurable to view, but don’t over do it. Like I’ve just said, keep it simple, you won’t regret it.

Work with tables

As many email clients handle CSS worst than IE6 (Yes, I’m not joking), you shouldn’t even try to make advanced layouts using CSS. Instead, you should do a jump 10 years ago and say hello to tables, tr’s and td’s again.

If you’re like me, you’re a CSS fan, and this might sound very frustrating. In fact, having to code the dirty way is never pleasant, but you don’t have much of a choice. Do not hesitate to test by yourself: Chances are that you’ll soon be using tables again.

Always use images from your server

Among html email worst practices I ever saw, embedding images directly in the email definitely arrived at good place. This is wrong in many points: First, it will make the email heavier (I’ve seen 300ko messages!), and secondly, there’s a strong risk that the recipient email client block those images.

What you should do is to create a hierarchy of directories on your server, for example Newsletters and then May_2010, and upload images for your html email in it. Once done, simply call them using absolute url paths:

  1. <img src="http://www.catswhocode.com/images/cat.jpg" alt="A cat" />

Write your CSS inline and use html attributes

In email clients, the lack of CSS support is definitely something to keep in mind. Don’t try linking to an external CSS file, and try to avoid as many CSS declarations as possible in the <head> section of your document.

It may be dirty, but the best way to make sure your CSS will be (quite) correctly interpreted by the recipient’s client is to code your CSS the inline way, as shown in the example below:

  1. <p style="background:#069; color: white;">A new background and font color with inline CSS</p>

Another “dirty but effective” option to consider is the use of html attributes, such as background or bgcolor:

  1. <body bgcolor="#069">

Don’t forget the text format

It may seems a bit obsolete in 2010, but many people, including myself, prefers the good old “plain text” format than html emails. When creating an email list subscription form, try to allow the visitor to choose between the html and plain text format.

Make sure your emails display in various clients

When creating a website, any serious developer will test its render on various browsers. This should be the same with html emails: people use a wide variety of clients and in order to be professional you should try to support most of them.

In my opinion, the following clients should be supported: Gmail, Yahoo mail, Mozilla Thunderbird, Apple Mail and Microsoft Outlook. below, you’ll find two great guides about CSS in html emails:

  • Guide to CSS support in email clients: A very interesting guide describing which CSS properties can be used depending on the user’s email client. PDF and Excel versions are downloadable.
  • CSS3 support in email clients : Enjoying CSS3? Here’s another great resource brought to you by Campaign Monitor, showing the few CSS3 properties you can already use in your html emails.

Use Google Analytics to track conversions

Sending a good html email is definitely a great thing, but your goal is to have people click on it and visit your site. There’s lots of way to track clicks on emails, but one of the easiest is to use Google Analytics, that you’re probably already using on your website.

I’ve never been a big email list sender so I never experimented with Google Analytics conversion tracking. Though, it looks like doing so is very easy: All you have to do is to add some GET parameters to your links, as shown in the example below:

  1. <a href="http://www.mysite.com/page.php?utm_campaign=fall-sale&;utm_medium=email&utm_source=female-list">Click here</a>

However, if you want to know more about click tracking using Google Analytics, you should have a look at this article.

StumbleUponLinkedInGoogle+DeliciousDiggShare
© Black Rhino Solutions, Inc 2009-2013 All Rights Reserved | Terms & Conditions | Privacy Policy
Black Rhino Solutions, Inc is a Website & Graphic Design firm located in Westchester NY, Orange County NY and Charleston SC. We provide a ton of awesome online services such as video production, website design, application development, graphic design, branding, and other marketing services.
Web Design Westchester

* Means Mandatory

Full Name * Project Budget

Services Needed:






Your Role/Title Project Timeline
Phone Number * When do we start?
Email Address * Project Description *
Company Name
Website URL

To check that your human please copy the image on the left
website design westchester