Hello, im new to octoprint and i was trying to resize my UI, i have been able to remove the margins but items like temperature graph stay the same size. Do i need additional code to fill the rest of the screen?
I've so far only added
.span8, width, 100%
.container, width, 100%
form.custom_container, display, inline-block
form.custom)container, padding-right, 10px
What I do in a case like this is right-mouse click on the part of the screen I'd like to change and then select Inspect Element from the context popup menu in my browser. I then click different parts of the HTML text in the bottom there and watch as things are highlighted back in the HTML page itself. I'll then eventually find the margin, identify which DIV tag by class or ID is involved and then try to change something.
If it's a class, as in <div id="something" class="somethingelse"></div> then you want to use .somethingelse as the selector. If it's an ID, then you want to use #something for the selector. The ID is almost always a safer option.
I think you're looking to adjust the float css setting for the selector ul.nav.pull-right. If you make it none it will push all the way to the left next to the logo. Or adjust the margin-right setting to push it over to where you want it.
Thanks. Could you specify for me which is the selector and which is the css rule. I'm a little new to this.
I've tried a few variations but they didnt work probly just my ineptitude.
My plugin only supports images, not video stream. My best guess is that your value you are setting for the address is wrong. Use the same thing that you have set in your webcam settings and make sure there is only one closing parenthesis, Rule: background-image Value: url(http://<ip of your pi>:8080/?action=stream) no-repeat center
Just tested this one again, didin't work, wonder if temps graph plugin affects this as I've recently installed that. I was testing previously with out it installed tho.
Using sidebar cam which is great, its not that i have to get the cam in temps working its more knowing i can if you know what i mean.
Been experimenting with something else too, tryin to edit the size of the graph in themify
Okay! I've got my OctoPrint UI set up the way I want it.... or at least almost. Now that I have made it all nice and wide, the narrow settings window is bugging me. I've messed around with it, but it seems that some positioning stuff is inline hard coded.
If someone wants to take a stab at it, I'd be grateful.
Has anyone managed to figure out the CSS for the TempGraph plugin to make it expand with .container and .span8? When I modify those elements, my graph doesn't expand.