• Hello how can i change the background of my blog ? i want to replace it with another color or with a picture

    Thanks guys

Viewing 10 replies - 1 through 10 (of 10 total)
  • Have you tried changing background declaration in style.css? theme name or site url?

    Hi,

    I would also like to change the background of my website. Does it have to come from a website (i.e. relate to a url address) or can I use an .jpg image?

    Thanks very much

    you can use any image for a background….
    it has to be uploaded into your theme’s images folder, and called appropriately (by url)

    Hi,

    Thanks for the response. I am very new to this & I have tried changing the url and entering the images address, which is situated on my computer, but the background just goes blank.

    Do you know where on the stylesheet I imput this information, because I have never worked with web-pages or anything of the sort before?

    Your assistance would be greatly appreciated

    it’d be easier to help with a link to your site

    Open up your style.css file and look for the “background” property within the “body” tag.

    body{
    background:……

    or..

    background-image(

    e.g.

    }

    body{
    background-color: black;
    }

    body{
    background:url(/images/mybackground.jpg);
    }

    I would read up on CSS and background, give google search a whirl.

    Thanks for the response,
    here is the address of the website;
    http://www.martinforsterandsons.co.uk/

    I think what I have to do is read up on CSS and background and I should be better equipped to help myself

    Cheers

    /* General */
    
    body {
    
    	margin: 0;
    
    	background: #AB682F;
    
    }

    This section of your style.css is going to be what controls that orangeish bg colour. You can simply adjust that hex code to anything you’d like. Or you can work on adding photo if you like….. Pictures can be hard to work with and keep things looking professional. You’ve gotta worry about how they repeat, etc…

    here’s an example of the code I use to set my background:
    background: #000 url('images/bg_tile.gif') repeat fixed;

    if you are willing to read up on css just a bit, it will definitely help you along the way

    rvoodoo,

    thanks very much you have been a diamond in the rough.

    i have started reading up on css, because I am now responsible for running this website. hahaha..

    well, i will give it a whirl and thanks again

    merry crimbo

    Hello
    I am uploading photos in my website http://www.southern-autosport.com and alot come with a white background. I want to add a border and possibly change the bacground color to gray.I want to make it standard when uploading photos. can someone help me out??

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘change the background ?’ is closed to new replies.