Ok
  Ticket Público #1008087
Custom background/patterns?
Cerrado

Comentarios

  •  2
    xinfection Comenzaste la conversación

    Hey! 

    I was wondering if it is possible to add a custom background or pattern to body section of the theme. all that I can find is custom colors or a selection of 4 patterns and I am not really fond of them :c 



  •  63
    TW4 Respondiste

    Hi

    It can be done with the custom css

    Use this code for a background image

    body {

    background-image: url('url-image');

    background-repeat: no-repeat;

    background-size: cover; 

    background-attachment: fixed;

    }

    Use this code for a background pattern

    body {

    background-image: url('url-image');

    background-repeat: repeat;

    }