I have already upload the gif profile to my ftp in the images section
where exactly is the image located?
what else have you changed?
have you edited style.css or any other stylesheet of your theme to refer to the new image?
- the body background is at the moment defined by:
body { background: #443b34 url(09-pink/body-bg_pink.gif) repeat; color:#555; }
in /wp-content/themes/wp_premium/skins/09-pink.css
which is called after style.css
- either replace that image with your own image;
- or if you try to add a new background image to the body style in style.css of your theme, try to use !important to force it;
example:
body { background: #443b34 url(images/body-bg_new.gif) repeat!important; }
(I have no idea if there is an /images folder in your theme; just make sure that the image is in the right location.)