Does anyone know how I can add a Background?



Nevermind I figured it out thanks to noone but myself cause I am so fucking awesome ::Pats self on the back::

Sent from my SCH-R910 using Tapatalk
 
Well Congrats on the achievement.

But before you gloat in the glory, you need to realize that you messed up the white central portion in the background, it's more towards the left and your right sidebar moves out into the pink background.

From the looks of it, apparently you scanned a document and then edited it to suit your background style, however you forgot to remove the black scrape towards the left bottom of the image.

You'll need a better image that can be set at a safe vertical repeat in CSS and fades into a shade of pink towards the left and right corner. This will allow you to centralize the background and give it a color of pink.

My $0.02
 
As Triped pointed out, the background is off.

You can fix that in the css by adding in your global.css in the body (starts on line 15), background-position: center top; The only problem is that the image is not repeating very well.

If you wanted the pink column on the left. just before the content you need to create the image with white space the width of the pink + the body so that it centers with the pink bg to the left.

I would suggest you find a nice pink background pattern that follows the page all the way down on either side. Then also add additional elements on top of the pink pattern like the rose with an overlay layer.

For example:

Code:
<html>
<body>
<div id="bodyOverlay">
<!-- Page content here -->
</div>
</body>
</html>

bodyOverlay would contain the rose image which would simply show on top of the pink pattern.