I would like know how is made the shadow on bottom image, i tried to check to the source code but I not found nothing. Any idea? Thank you

example in the cover image or see in the widget friend on the your profile page under the name there is a shadow for see better the name of color white

Use the CSS box-shadow property

The syntax is:

box-shadow: h-shadow v-shadow blur spread color inset;

so use like this:

<!-- language: lang-css -->
.shadow {
    box-shadow: 2px 2px 2px 2px #888888;
}

See this fiddle for an example

It will look like this when applied to a block element with height and width properties set.

demo