Franklin website background error on deployment

Franklin website background image is visible in live server but not on gh-pages. How to make background image visible on gh-pages also ? :unamused:

LIVE SERVER look  

GH pages look below

The content of Franklin.css is given below:

/* ==================================================================
    Body
================================================================== */
body { 
    background-image: url("/assets/bg.jpg");
    background-attachment:;
    background-size: 1000px;
    -webkit-background-size: ;
    -moz-background-size:;
    -o-background-size: ;
    margin:0;
  }


This is a CSS oddity, the path should be given relative to where the CSS sheet is, given that it sits in css and that you want something in assets/ could you try:

background-image: url("../assets/bg.jpg")
1 Like