Okay
  Public Ticket #1540896
Is there an alternative to the image loading grey lines
Closed

Comments

  • obri3n started the conversation

    When images are loading there isa grey box with diagonal lines...

    Is there any options or alternatives to edit this? Looks kinda ugly.

    Is it an image that I can change? or some kind of loading circle, etc?


  •  2,744
    Andrew replied

    Hi obri3n,

    The loading screen is a black background color with an image of a diagonal line repeated on top.

    The CSS that sets all that up is here:

    .nectar-slider-loading {
        background-color: #393939;
        background-position: center;
        background-repeat: repeat;
        background-image: url(img/textures/diagonal_line.png);
        position: absolute;
        z-index: 1000;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    

    its somewhere in the theme's style.css file but you can override it by modifying it and adding it to the custom css code area on the salient options area.

    The diagonal_line.png image is at 

    https://newlandshall.co.uk/wp-content/themes/salient/img/textures/diagonal_line.png
    

    Hope you can work it from there.