• How can I take the blue background color that is default with the blog and tile a pattern I created there?

Viewing 1 replies (of 1 total)
  • go in wp-content/themes/default

    open the file: style.css

    Search for:

    #header {
    	background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center;
    	}

    change it to:

    #header {
    	background: url('images/your-pattern-image.jpg') repeat 0 0;
    	}

    Assuming you have saved the image in that folder.

Viewing 1 replies (of 1 total)
  • The topic ‘Change Background Color’ is closed to new replies.