Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to add background image to BrowserField.

myBrowserField.displayContent(getText(),"text/html; charset=utf-8","http://localhost");

getText() load bytes from local file about_us.html

about_us.html:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
body {
    background: #F2F4F4 url("bgorn.png") repeat-y; // bgorn.png in same folder as about_au.html but not work
    font-size: 75%;
    line-height: 62.5%;
    font-family: Arial;
}
</style>
</head>
<body> 
//some text here 
</body>
</html>

my question is how can I add image to background ?

background: #F2F4F4 url("bgorn.png") repeat-y; // bgorn.png in same folder as about_au.html but not work

UPDATE: Solution is: background: #F2F4F4 url("local:///bgorn.png");

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.