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.
Code breaking it?
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.
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>