You are not logged in.
Pages: 1
Hello, Oneye not support svg background screen
This does not work:
background: url("index.php?theme=default&extern=images/wallpapers/default.svg") repeat top center;
For against this works well:
background: url("images/default.svg") repeat top center;
In this case my image is at the root of the site.
Why ?
Offline
Actually the mimetype for SVG is not in the list of supported ones at https://github.com/oneye/oneye/blob/mas … in.eyecode .
I recommend you to add the following line right behind line 38:
'svg' => 'image/svg+xml; charset=utf-8',
Best regards,
Lars Knickrehm
The oneye project.
Offline
Improved the mimetype handling yesterday. Just look at the following commit: https://github.com/oneye/oneye/commit/8 … 2dda05090e
Best regards,
Lars Knickrehm
The oneye project.
Offline
Sorry, your changes have not solved my problem.
I tried these two codes:
background: url("index.php?theme=default&extern=images/wallpapers/default.svg") repeat top center;
background: url('index.php?theme=default&extern=images/wallpapers/default.svg') repeat top center;
And you're it work?
Offline
There was another place we checked the extension at. It's finally been fixed with the following commit: https://github.com/oneye/oneye/commit/4 … 52546bb79d .
Best regards,
Lars Knickrehm
The oneye project.
Offline
Pages: 1