Quote:
Originally Posted by Cyphox
i a total n00b when it comes to html, but when i open the modified html-file in windows it works, on the reader it doesnt. the poweroff.png is in the same folder as the poweroff_info.html
so i guess its just not supported? (yet?) or am i missing something??
|
The application that handles the poweroff_info.html cannot resolve the relative path information (as your web browser does). One therefore has to give the full path. This works on my Kobo Touch:
Code:
<html>
<body>
<img src="/mnt/onboard/.kobo/kbmenu/images/test01.png" width="566">
</body>
</html>
In your case you might try something like the following:
Code:
<img src="/mnt/onboard/.kobo/kbmenu/txt/poweroff.png" width="726">