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.
- Leggi tutto
- 47 letture
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.
- 40 letture
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.
- Leggi tutto
- 56 letture
User Interface Design Inspiration
User Interface Design Inspiration
- 45 letture
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.
- 57 letture
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.
- 55 letture
Where Should I Go On Holiday?
An interactive map to help plan where and when to go on holiday depending on your weather preferences
- 67 letture
[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');
- 107 letture
Clickable Background
- 85 letture
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. }
- 165 letture