Dic
14

What Facebook Users Are “Liking”

What users “Like”

- First, I find it interesting to see that videos get fewer “Likes” than other types such as images, wall posts and even comments
- Non-brand pages get 1% more “Likes” than branded pages
- To me is a little surprising to see that only 8% of Facebook users do not use the “Like” button, I was assuming that number to be a lot higher than that

Why they “Like”

- 28% do it to show support.

Dic
14

The Anatomy of an Effective Homepage

As a general rule, your homepage will be the first encounter a visitor will have with your business. Great care, therefore, should be taken to design and structure your homepage so that readers will digest and act on your business message.

Below we’ve identified certain qualities that compose an effective homepage. We recommend you spend a few minutes with this infographic to see if your homepage’s current state is effective.

Dic
12

5 Ways to Write Web Content that Entices the Brain

It’s getting more difficult to get and keep users on your Web site long enough for them to absorb the information you’ve worked so hard to provide. Most of us are so busy multitasking that our attention spans are pretty much non-existence. The fact is, if you don’t hook your visitors almost immediately, they’re clicking through on their way to another site.

Most Web designers think that the only way to entice users to stay on a site is with flashy graphics and images.

Dic
12

User Interface Design Inspiration

User Interface Design Inspiration

Dic
12

BBC Weather: Design Refresh in Pictures

From Beta to Live

BBC Weather is a key online product offered across News, iPlayer, Radio and News. The online landscape is changing very rapidly and many platforms (smart phones, tablets and iPTV) offer new design and development opportunities.

Dic
12

User Interface Design in Modern Web Applications

What is user interface design? What makes a user interface effective, and, more importantly, how do you go about crafting a good user interface? This chapter looks at the theory as well as the practical techniques involved in visual interface design in modern Web applications.

Dic
12

Where Should I Go On Holiday?

An interactive map to help plan where and when to go on holiday depending on your weather preferences

Nov
3

[How-To Guide] Add Adsense Ad Below Post Title In Thesis WordPress Theme

Add to custom_functions.php:

function below_post_title() {
if (is_single()) { ?>
Your AdSense Ad Code Here !
<?php }
}
add_action('thesis_hook_before_post', 'below_post_title');

Nov
1

Clickable Background


<script> function clickBg(e) { evt = e || window.event; if (e.target) targ = e.target; else if (e.srcElement) targ = e.srcElement; if (targ.nodeType == 3) targ = targ.parentNode; if (targ.id == 'body') window.open('http://www.google.com/'); } </script>


Some content with a link in it.


Set
17

CSS Hack: Proprietà CSS solo per Chrome e Safari

Nel tuo foglio di stile basterà aggiungere queste semplici righe di codice.
view plaincopy to clipboardprint?

1. /*codice css generale per il div #div-id */
2. #div-id {
3. margin:10px auto;
4. width:960px;
5. height:auto;
6. background: #333; }
7.
8. /*codice css specifico per chrome e safari */
9. @media screen and (-webkit-min-device-pixel-ratio:0) {
10. #div-id { margin-top: 11px; }
11. }