How can I achieve this effect?

conor

New Member
if you right click on the image and select view background image then you will see that it is just an image being repeated using CSS.

.class{
background:url(whatever.jpg) repeat;
}

That should work for you, let me know if you have any problems.
 

wetgravy

New Member
i'm assuming you mean the following graphic ...

bodyback.jpg


as you notice, the graphic is just a simple repeating background. to replicate something similar you need to learn layers and have an understanding on the use of masks, and layer properties.

Most of this is alternating slightly blurred white boxes that are set with their opacity to around 35 and at the very top is another white box spanning the length with the same properties. other than that ... it's all simple photoshop of gradients and blurs. your best bet is to experiment and browse photoshop tutorial sites.
 

adamblan

New Member
To add to Gravy's post:

Once you've got your graphic looking good, go to Filters -> Other -> Offset

By adjusting the x-axis offset, the graphic will be able to be tiled...
 
Top