Question / Help BrowserSource not always loading

stacalkas

New Member
Trying to make layouts using html.

I'm using the BrowserSource to load an overlay for video borders. This loads fine every single time.

However, my background html doesn't always load. Sometimes i can get it to appear by toggling it's visibility on/off. I can't always depend upon it to load back up after I close/re-open the program.

NotWorking.png Working.png

Code breaking it?

HTML:
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <style type="text/css">
    * { margin: 0; padding: 0; outline: 0; }
   
    body {
        background-image: url("images/bg.png");
        background-color: rgba(150, 150, 150, 1);
    }
   
    </style>
   
    <title>Background</title>
</head>

<body>
   

</body>
</html>
 

Attachments

  • 2016-09-07 00-58-19.txt
    10.6 KB · Views: 12

stacalkas

New Member
Update: Appears to be an issue with the background image in my css code. Tried linking to an non-local image, but it still has problems.

Using a single image for a background until I can figure this out.
 
Top