Hi guys,
To add a background image to your profile skin is very simple, here are some links to a similar situations:
http://www.artician.com/forum/banner-Module-t3945.htmlhttp://www.artician.com/forum/Editing-defa...rial-t3517.htmlQuick guide to add backgrounds to your profile skins:With FireFoxhttp://www.mozilla.com/en-US/firefox/personal.html1) Go to
Customize> Mouse over
CSS *top right* and then select
advance editor. This will pop up a window with your skin's CSS code.
2) With FireFox browse press
CTRL+F on your keyboard (a small box at the bottom will show up) in the search box type:
QUOTE
body {font-family: Arial, Verdana, Helvetica, sans-serif; font-size:12px; background:#515153; color: #666; margin: 0; text-align: center; /*centers page for IE*/}
Replace code with:QUOTE
body {font-family: Arial, Verdana, Helvetica, sans-serif; font-size:12px; background:#515153 url('http://i305.photobucket.com/albums/nn222/biskizitATgaia/678644gz6asg8ibk.png'); color: #666; margin: 0; text-align: center; /*centers page for IE*/}
save and your done.
That's basic background repeat but to add a more neater background look follow this.
Right before:QUOTE
; color: #666;
add:fixedSo should look like this:QUOTE
fixed; color: #666;
final results:QUOTE
body {font-family: Arial, Verdana, Helvetica, sans-serif; font-size:12px; background:#515153 url('http://i305.photobucket.com/albums/nn222/biskizitATgaia/678644gz6asg8ibk.png') fixed; color: #666; margin: 0; text-align: center; /*centers page for IE*/}
If you continue to have problems let me know.