• It is possible to change the template background, I mean, the gray part on both sides with a picture?
    If so, where I can find the code to change it?
    Thanks in advance

Viewing 1 replies (of 1 total)
  • Check in your dashboard under “Appearance” and you might have a “Background” option that you can set a custom background with image or you can add it via your own css, like:

    body {
      background-image: url('PUT THE PATH TO YOUR IMAGE');
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
      background-attachment: fixed;

    This will make your background image cover the viewable screen and be fixed so it does not look like it moves when you scroll down the page.

    Hope that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Change the background to a picture’ is closed to new replies.