Page 1 of 1

Loading page background

Posted: 11 May 2018, 10:43
by otomai
Hi everyone,
I'm asking how could we change the background image of the loading page in serenity 5.2.2.
Thanks

Re: Loading page background

Posted: 16 May 2018, 07:28
by mert.sincan
You need to change the following SVG in index.html;

Code: Select all

...
<svg class="splash-loader" width="65px" height="65px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
         <circle class="path" fill="none" stroke-width="6" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
</svg>
...
You can add custom SVGs instead of the above code.

Re: Loading page background

Posted: 06 Jun 2018, 21:32
by pipezz
I agree with the previous answer.

Re: Loading page background

Posted: 11 Jun 2018, 08:19
by mert.sincan
Thanks @pipezz ;)