I am trying to create a minimalist dashboard and I am also new ti yaml.i would like to add a grid directly under the card person.how dop i force my grid to start vertically.Is there a way to permanently fix the starting position of the grid.
If I understand your problem correctly, you could use this, which forces your grid to only have one column, placing all the card below eachother. This is practicly the same as vertical-stack, but then you could use the benefits from grid.
- type: grid
columns: 1
cards:
- type: your cards
- and so on
Better would be if you use vertical-stack in combination with horizontal-stack, like so:
- type: vertical-stack
cards:
- type: your-card-full-width
- type: horizontal-stack #could be 'type: grid' as well
cards:
- type: your cards next to eachother
And as you are using Custom:Button-Card Template ( Most likely with your button-card-grid defined there, it would be most relevant you also showed this(formatted) ( beside a pic i.e how you’d expect it to look like )
PS: I changed Your Header, and Category, to reflect the Dashboard , Card and “issue” you are facing.
You also might be better of Searching in The Big Forum-Topic for this Dashboard “Lovelace UI” above, and post a question in this Topic/Project
The docs for this specific Dashboard you find in the first link above