Read the statement by Michael Teeuw here.
organization of the text next to the icon.
-
As I said. If I position the module on the left side. Everything is perfectly aligned.
If I place the module on the right side, the text is far from the icons.
Taking advantage of that will look at the code. It is possible, for example, when he displays “off” or “on” he writes in my language …
I don’t think so, as it pulls that information from the Home Assistant server. -
I did not find any css files in this addom.
It would be possible to add lines to separate some functions, or I’m saying stupidity.
-
yes, he creates an html table (table)
and each row is a table row (tr)
you would have to move this// Name newCell = newrow.insertCell(1); newText = document.createTextNode(name); newCell.appendChild(newText); // Value newCell = newrow.insertCell(2); newCell.className = "align-right" newText = document.createTextNode(value); newCell.appendChild(newText); // Unit newCell = newrow.insertCell(3); newCell.className = "align-left" newText = document.createTextNode(unit); newCell.appendChild(newText);
in front of this
// icons newCell = newrow.insertCell(0);
and change the insertCell(?) numbers back to 0-3 in order again
change 1 to 0,
2 to 1,
3 to 2
and 0 to 3as for left/right areas of screen… yes, it is quite a challenge to have the text properly aligned, regardless of the area of the screen (position) selected… there is NO ‘simple’ fix
-
I will try to play with this. But already mine gave a north !!!
I will try to create the lines. About aligning if standing next to the icons already helps. Now creating html is simpler. I will try to understand. Anything I report.
-
Wait! I think that’s not what @iorifly wants, right?
If I understand this correct (and it is difficult to understand ;) ) the text in the middle should be aligned left?
If I place the module on the right side, the text is far from the icons.
-
I will send another photo. with the module positioned to the left of the screen.
-
@doubleT yes, you are correct… sorry, I misunderstood , I thought he wanted the icons on the right end of the line
-
I actually want it that way. See how the text is perfectly aligned to the icon.
-
I also wanted to put lines
Like the ones I set as an example. I actually want white line like the one under “Home assistant”
https://imgur.com/sx9Muq2 -
Ok, I understand. I’m looking at the code and I think it’s not written very good. There are cells named “align-left” and “align-right” – stupid in this case as there’s no CSS for it and the cells are taking their alignment from the module position, it seems.
Are you familiar with the dev mode? Can you check the html structure of the table and see if the cells and table rows that you try to change have any class names?
I’m trying to figure this out and then I’d suggest some entries in the custom.css file.