Blog / web design tips

Tips on creating Twitter Background

Wednesday, May 20th, 2009

There is no doubt that Twitter is one of the hottest thing online right now, and it is addicting. Some people like to use a simple pattern, some with their contact information on it. In order to design a background that works best for you, you need to know at least how the mechanic works. Twitter ‘s content area is 440px wide and always horizontally aligned to the center of the screen. What it means is the content areas will float to the center depending on the viewer’s screen size and resolution. Proposal Writet Adam Plitt‘s Twitter is a good example, and indeed very well thought out.

good twitter bg 1 Tips on creating Twitter Background
This is how the background looks on 1024 x 768 resolution

You can see his background with him holding the content area fits perfectly to the screen on 1024 x 768 resolution, which is what most people would be using these days.

good twitter bg 2 Tips on creating Twitter Background

This is how it looks on an unusual 1440 x 900 resolution

And you can see on the right size of his background, the content area covers his left hand slightly because the background is not designed for a widescreen monitor like the one I am using with 1440 x 900 resolution.

Adam actually really put a lot of thoughts in when he designed this background, and you will know why in a second. I downloaded his background itself off the Twitter and know that the image has a split on the right.

good twitter bg 3 Tips on creating Twitter Background

This is because the image background is designed for 2 different, but most common screen resolution, 1024 and 1280 in width. It can be tricky when it comes to design Twitter background, because you will never know what resolution of people are using. The only thing you can do is, know your audience, and design it with a certain demographic in mind.

Web Design Tips: CSS Basics

Monday, February 23rd, 2009

Cascading Style Sheets (CSS)…it sounds complicated, but it is simple, yet powerful. With a few lines you can transform a plain black-on-white web page into nice looking layout.

For those who aren’t familiar with the term, CSS is a language used to style your HTML by making declarations for various selectors. A selector may be a class, an id, or a predefined HTML element such as p, a, h1, div. Classes and ids are similar, but an id should only be used once throughout the page while a class can be used many times. Classes and ids are used to specify an HTML element within your code.

Let’s take a look at some HTML using a class and an id…

<p>This is a standard paragraph block</p>
<p class="some-class">This paragraph is using a custom class</p>
<p id="some-id">And this one is using an id</p>

Now that we’ve got our HTML we can style it using CSS. First I am going to set all paragraph elements to have 12pt and red text. Then I will change the background color of any elements using the some-class. And finally I will add both margin and padding to the element with the id of some-id. This code will go inside of <style> tags in your head section or in a separate .css file.

/* an HTML element */
p {
	color: red;
	font-size: 12pt;
	}

/* a custom class */
.some-class {
	background: blue;
	}

/* a custom id */
#some-id {
	margin: 10px;
	padding: 5px;
	}

The results should look something like this…

This is a standard paragraph block

This paragraph is using a custom class

And this one is using an id

Next time we will go deeper into CSS and learn some intermediate tips and tricks to help stylize your content. If you have any questions be sure to leave a comment or email me and I will try to cover it in my upcoming tutorials.

 

About Promoting Group

Who We Are: Promoting Group is an internet marketing company whose priority is to make your organization rise above the competition. We are a group of talented and dedicated individuals with a passion for marketing and demonstrated skill in public relations and search engine optimization. We will custom-tailor marketing strategies that are right for you ...

Read more