Sexting driven by peer pressure

Posted by - September 30th, 2011

Both young men and women experience peer pressure to share sexual images via the new phenomenon of ‘sexting’, preliminary findings from a University of Melbourne study has found ‘Sexting’ is [...]


Science Blog

Tags: , , ,

Gisele Bundchen Lingerie photoshoot

Posted by - September 30th, 2011

The hot model Gisele Bundchen dons a barely-there set of bra and panties for Hope Lingerie’s newest commercial. Checkout the hot pics below…        
DOORMagazine – Online Web Magazine

Tags: , , ,

Country bids adieu to Tiger Pataudi – Last Rites Photos

Posted by - September 29th, 2011

The funeral of former Indian cricket captain and the last Nawab of Pataudi state, Mansur Ali Khan Pataudi,will be held at the family’s burial ground at Pataudi, 26 km from Gurgaon city, Friday afternoon.   Checkout the pictures below: Mansur Ali Khan Pataudi Funeral Picture
DOORMagazine – Online Web Magazine

Tags: , , , , , , ,

*HOT* $1.25/1 Silk Soymilk Coupon

Posted by - September 29th, 2011

I have a nice, high value Silk Soymilk coupon for you!  Right now, Silk’s Facebook page is giving us .25/1 Silk Solymilk Coupons when we register with Silk and then refer a friend.  To begin, go HERE to “like” Silk on Facebook.  Then, click the “shareable coupon” category.  Once there, make sure that your pop-up blocker is not on.  Click “register now”, login or register for a Silk account (use your couponing email address).  Once complete, refer one Facebook friend to this offer and you will then be able to print your coupon. :)

**I know the steps above may seem time-consuming but it took me approximately 30 seconds once I logged into my Silk account.

**While you are on Facebook, go HERE to join over 23,000 people and “like” Addicted to Saving and never miss out on a deal again!

Thanks Rose Knows Coupons




AddictedToSaving.com

Tags: , , , ,

Suzy Menkes: Sources Say Raf Simons To Take Over At Yves Saint Laurent

Posted by - September 28th, 2011

PARIS, France — We usually leave ‘breaking news’ stories to the wire services and Twitter, and don’t like to propagate unsubstantiated rumours, but sometimes the news is so big, and the source of the rumour is so credible, that it warrants immediate comment and analysis from BoF. In her rapturous review of Raf Simons’ Spring/Summer 2012 [...]
The Business of Fashion

Tags: , , , , , , , ,

How to Create a Responsive Portfolio Site with WordPress and Semantic.gs

Posted by - September 27th, 2011

Advertise here with BSA

I doubt that I need to explain to WDL readers what responsive design is, or why it’s important. Suffice it to say that it is a big part of the future of our industry. Fortunately, making responsive layouts is easier than it was when when we first started.

The advent of LESS CSS, a CSS pre-processor, has brought with it the ability to let our browsers do the hard work of calculating percentages and such. Throw in a few media queries, and the line between the so-called “mobile web” and the “normal web” begins to blur even more. This is a good thing.

Semantic.gs (which is based on LESS CSS) is not so much a frame work as it is a “layout engine”. (I just made that up.) Before you continue reading this tutorial, you should go and read the Semantic.gs documentation. You should also know that this is not a tutorial for beginners. It would help if you had some knowledge of making WordPress themes.

Done? Good, we can begin.

Planning Your Website

For the purposes of this tutorial, you have decided to make the simplest portfolio ever. It consists of three main section:

  • Portfolio (this also acts as the home page)
  • About Me
  • Contact

Here’s what your wire-frame of the front page looks like:

Wire-frame of the Portfolio page.

Setting Up WordPress

The Template Files

I’ve set up a brand new WordPress in my local XAMPP server install to test my layout. Now, including LESS CSS in a WordPress theme isn’t as simple as it should be. I think there’s some sort of Javascript conflict. However, there is a workaround.

The lovely people who developed Perkins (another LESS CSS-based framework) went to the trouble of making a WordPress theme that incorporates LESS CSS. Of course, they did it to get their own framework to function as part of a WP theme, but we can adapt their work to suit our needs. Here’s how I’ve set up the theme files (based on Starkers, by Elliot Jay Stocks):

Template File Structure

Now, you’re bound to notice two atypical files in the image above. That’s because I copied class.wp-less-styles.php, functions.less-styles.php, as well ast functions.php from the WP theme that the perkins guys made (you can find the theme here).

You’ll want to open up fuctions.php and edit it until it looks something like this:

<?php

/**

* @package WordPress

* @subpackage Adaptius

*/

define('WP_DEBUG', true);

require 'class.wp-less-styles.php';

include 'functions.less-styles.php';

class AdaptiusTheme

{

public function init()

{

// Register less

wp_register_script('less', get_template_directory_uri() . '/js/less-1.1.3.min.js', array(), false, true);

// Then add to the queue

wp_enqueue_script('less');

}

}

// Init

add_action('init', array('AdaptiusTheme', 'init'));

Don’t forget to download the latest version of LESS CSS and put in the theme’s directory somewhere. Make sure that functions.php points to it.

The Header

In order to make LESS CSS, and Smeantic.gs work, you have to do a little bit of finagling with the header.

<?php

/**

* The Header for our theme.

*

* Displays all of the <head> section and everything up till <div id="main">

*

* @package WordPress

* @subpackage Adaptius

* @since Adaptius 1.0

*/

?><!DOCTYPE html>

<html <?php language_attributes(); ?>>

<head>

<meta charset="<?php bloginfo( 'charset' ); ?>" />

<title><?php wp_title( '|', true, 'right' ); ?></title>

<link rel="stylesheet/less" type="text/css" media="all" href="<?php bloginfo( 'template_url' ); ?>/css/reset.less" />

<link rel="stylesheet/less" type="text/css" media="all" href="<?php bloginfo( 'template_url' ); ?>/css/typography.less" />

<link rel="stylesheet/less" type="text/css" media="all" href="<?php bloginfo( 'template_url' ); ?>/css/layout.less" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link rel="profile" href="http://gmpg.org/xfn/11" />

<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />

<?php wp_head(); ?>

<!--[if lt IE 9]>

<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>

<![endif]-->
</head>

<body <?php body_class(); ?>>

Take note of how the stylesheet links are formatted. They have to be wrtten exactly like that in order for the JS pre-processor to do its work. I’ve included jQuery because it’s a generally good thing to have, and the HTML5 Shiv script to make sure Internet Explorer displays things properly.

Speaking of Internet Explorer, I ran into a couple of problems while making this tutorial. IEs 7&8 don’t recognize media queries. Normally, you can fix this with a polyfill, like Respond.js, but in this case, it didn’t work. This means that certain things won’t change position in older versions of IE, that will change position in other browsers, depending on the size of the window.

The problem most likely has something to do with the combination of LESS CSS and WP. If someone know a fix for this problem, I’d love to hear about it.

Content is King

To truly demonstrate how semantic.gs works, and how it allows you to easily separate content and presentation, I’m going to show you the content before I start applying any styles.

I’ve created a copy of the page.php template called portfolio-page.png, and that’s what I’m going to use as the template for the home page.

So, here’s the HTML that’s in header.php:

<header id="pageheader" class="container">

<h1>Your Logo(type)</h1>

<nav><?php wp_nav_menu( array('menu' => 'Navigation' )); ?></nav>

</header>

 

And here's the code that's in portfolio-page.php:

 

<section class="container">

<h2>Check out my kick-ass websites!</h2>

</section>
<section class="container">

<ul>

<?php

// The Query

$the_query = new WP_Query( 'post_type=post&posts_per_page=8' );

// The Loop

while ( $the_query->have_posts() ) : $the_query->the_post();

echo '<li><a href="'; the_permalink(); echo'">';

the_post_thumbnail();

echo '</a></li>';

endwhile;

// Reset Post Data

wp_reset_postdata();

?>

</ul>

</section>

And lastly, here’s the output of that code:

Unstyled Content

The Fun Part (The CSS)

Finally, we get to start the fun stuff. The first order of business is to customize grid.less, which should be in your CSS folder with the other .less files. For the purposes of this tutorial, don’t bother with the bottom part of the file. All of the configuration options you need are at the top.

You want something that looks like this:

// Defaults which you can freely override

@column-width: 60;

@gutter-width: 40;

@columns: 12;

// Utility variable — you should never need to modify this

@_gridsystem-width: (@column-width*@columns) + (@gutter-width*@columns) * 1px;

// Set @total-width to 100% for a fluid layout

@total-width: 100%;

 

That in itself will not make any visible difference, but this code (which belongs in layout.less) will:

 

@import "grid.less";

ul, ol {

list-style: none;

}

.container {

width: 80%;

max-width: 960px;

margin: 0px auto;

overflow: hidden;

}

#pageheader {

padding-top: 36px;

height: 72px;

line-height: 72px;

}
#pageheader h1 {

.column(6);

height: 72px;

}

#pageheader nav {

.column(6);

}

#pageheader nav ul li {

display: block;

.column(4);

text-align: center;

}

h2.intro {

height: 208px;

line-height: 208px;

font-size: 48px;

text-align: center;

border-top: 1px solid #414141;

border-bottom: 1px solid #414141;

margin-bottom: 36px;

margin-top: 12px;

}

section#portfolio ul li {

list-style: none;

.column(3);

padding-bottom: 20px;

}

img {

width: 100%;

height: auto;

}

@media screen and (max-width: 800px) {

#pageheader {

height: auto;

}

#pageheader h1 {

.column(12);

}

#pageheader nav {

.column(12);

}

h2.intro {

height: 144px;

line-height: 144px;

font-size: 36px;

}

section#portfolio ul li {

list-style: none;

.column(4);

padding-bottom: 10px;

}

}

@media screen and (max-width: 480px) {

* {

float: none !important;

}

#pageheader {

height: auto;

}

#pageheader nav {

display: block;

}

h2.intro {

height: auto;

padding-top: 24px;

padding-bottom: 24px;

line-height: 24px;

font-size: 24px;

}

}

As you can see, the “columns” are nestable, and it’s all quite simple to use, once you’ve gotten the set-up out of the way. I hope you all find this useful, and, again, if anyone finds a fix for the IE/media queries problem I’d love to know about it.

Web Design Ledger

Tags: , , , , ,

Inspiration: Minimalist Posters

Posted by - September 27th, 2011

Advertise here with BSA

Our minimalism tag is filled with eye candy images to help you get inspired remembering that old and wise premise “less is more.” To add content to our tag and to keep showing you good examples of minimal designs that work we decided to show some posters designed by Pedro Vidotto. Pedro is a Graphic Designer and Art Director originally from Brazil who is currently based in London. His background is in Advertising and he has five years of experience working in the industry. Here you will be able to see that quality is better than quantity in design.

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Inspiration: Minimalist Posters

Web Design Ledger

Tags: , ,

27 Examples of Color Usage in Web Design

Posted by - September 26th, 2011

Advertise here with BSA

Here on WDL, we’ve discussed how colors can be used to invoke various emotions. For example, the color red symbolizes excitement and energy, while the more tranquil color blue represents calmness and stability. Here we’ve gathered a collection of web designs that make good use of color. In these examples you’ll notice some using color to highlight and draw attention to specific elements, while others use larger amounts of color to set the over all tone of the site. Nevertheless, there’s plenty of color usage here to inspire you. Enjoy!

indubitablee

Colors in Web Design

Grind

Colors in Web Design

Best Made

Colors in Web Design

Engine Creative

Colors in Web Design

Urbanoff

Colors in Web Design

Ignacio Macri

Colors in Web Design

The Combine

Colors in Web Design

S.Dallyn

Colors in Web Design

James Garner

Colors in Web Design

Fuzzco

Colors in Web Design

Sunday Best

Colors in Web Design

Neuarmy

Colors in Web Design

Karb

Colors in Web Design

Igor Zagnienski

Colors in Web Design

playground

Colors in Web Design

de Certau & Associes

Colors in Web Design

Alexander Zhestkov

Colors in Web Design

Hyper

Colors in Web Design

Flow Festival

Colors in Web Design

Column Five

Colors in Web Design

odopod

Colors in Web Design

Daniel Martin

Colors in Web Design

Archfirm

Colors in Web Design

JChebly

Colors in Web Design

Lefft

Colors in Web Design

The Manual

Colors in Web Design

Bloom Health

Colors in Web Design

Source:

The Best Designs
Awwwards
unmatchedstyle

Web Design Ledger

Tags: , , ,

Thoughts on Facebook’s f8 conference

Posted by - September 26th, 2011

Facebook debuted a series of groundbreaking new features at its f8 conference. While many of these features obviously have a lot of potential, in practice they're a mixed (or, in some cases, a downright irritating) bag.

eMedia Vitals – Digital, Mobile and Social Media Engagement Strategies & Tactics

Tags: , ,

Stepping into the Globe of SMS Cell Phone Marketing and advertising

Posted by - September 25th, 2011

One particular in the far more standardized techniques of obtaining profit and advertising benefits via the use of mobiles is SMS or quick message providers. While it started on rocky footing, increased protective rules by providers to produce safeguards for audiences has given SMS the respectability that spam by no means got, though still keeping the benefits of spam: the massive audience and also the direct contact with buyers. With this in thoughts, it is fairly obvious why you really should think about utilizing SMS if you’ve a product, service, or brand to sell or promote. So how do you use SMS in case you know you want it? The fundamental methodology is uncomplicated enough: you set up a code variety and solicit individuals to ’sign up’ for the text messages provided when the amount is known as. It should be noted that this is explicitly an opt-in course of action, instead of opt-out, which assists keep SMS respectable. Opted-in subscribers can get messages at intervals chosen by the SMS business, and these messages can even at times incorporate complex prerequisite conditions. How would you like to become in a position to text a person whenever they happen to be walking by your store at the mall? That’s just one particular of the techniques you are able to use SMS to help far better target your marketing. Mobile companies do police SMS somewhat, producing sure that SMS corporations don’t use misleading internet marketing or otherwise abuse their privileges. Both quick dialing codes and longer full numbers are accessible for use with SMS, such as international numbers. Depending on your selection, you’ll be able to share your code or quantity or you’ll be able to acquire one particular and unique to you and your provider. What if a person signs up, but changes their mind and wants out later? Properly, the method of getting out is also straightforward. A single message signifying the resignation through the assistance, typically ‘STOP,’ enables anybody to get out of any SMS at any time. This safety feature truly encourages individuals to sign up More, since they know how quick it is to leave later if they really feel like it! When you live within the United States, you’ve most likely seen ads for providers like this. Most from the high-visibility ones focus on joke collections and romantic interactions, but there’s no rule that says that’s all you are able to use SMS for. Contests and comparable exciting onetime events are also popular. Can you think of anything better? A small creativity could possibly be your key to profit with SMS, if you’re ready to take the first step. It is a surprisingly inexpensive and effortless support to create for any item. Go to our Mobile Monopoly Review for ideas on a wonderful cell advertising and marketing software. For more Google Ranking Tips, go to bradcallen.com

Article Review Site

Tags: , , , , , ,

« Previous Entries