Tutorials / CSS , September 17th, 2011
To add the lined paper background to a web page through CSS code you will first have to have an image which you can then use as a seamleass texture.
In one of my older posts Notebook Photoshop Pattern I've made available for you some 30 different notebook paper Photoshop patterns. Download the archive and you will find inside 30 .PAT files which you have to import into your Photoshop. The easiest way to import a Photshop pattern is to just drag and drop the .PAT file in your Photoshop.
The notebook lined paper seamless texture in the archive are all 60x60 pixels which means that the texture tile image that you will place on the page background will also have to be 60x60 pixels. So, create a new file in Photoshop with size 60x60, fill the layer with a color (it does not matter which color) and then go to the layer styles by double clicking on the layer. Go to Pattern Overlay and choose from the patterns one of the newly imported patterns. Save the result as a .JPEG or .GIF and upload it somewhere on your site. As an example I chose a single lined yellow paper pattern and the resulting image should look like this:
Now that you have the texture tile image you can add it through CSS. If you are new to CSS, don't be afraid, CSS is really easy. For a quick insight on CSS please go to What is CSS and How to Use Style Sheets for Web Design.
The quickest way to add the background texture to your web page with CSS is to use inline CSS. So, edit your HTML page and add a style attribute to the body tag like this
<html>
...
<body style="background-image:url('path_to_your_image/background-image.jpg;'">
</body>
...
</html>
and here it is- with this simple CSS style your web page just got a notebook paper background texture.
You can adjust the result you get by modifying the size of the .JPG or .GIF paper texture image and the patter will still be seamless. Most of the websites that use seamless pattern for their backgrounds use a small size pattern. This has the advantage that the page loads faster and also it looks better.
To see some live examples for this CSS lined paper background tutorial I've made the following images. By rolling over them you will be able to see how the PSD Dude website would look with the lined notebook paper background.
1 comment(s) for "CSS Lined Paper Background"