Thread: Kobo Start Menu
View Single Post
Old 07-04-2014, 02:25 PM   #307
tshering
Wizard
tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.
 
Posts: 3,489
Karma: 2914715
Join Date: Jun 2012
Device: kobo touch
Quote:
Originally Posted by Cyphox View Post
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">

Last edited by tshering; 07-04-2014 at 02:31 PM.
tshering is offline   Reply With Quote