Faecon
(Jo)
November 28, 2024, 6:46pm
1
title: "Home"
path: "home"
cards:
- type: horizontal-stack
cards:
- type: vertical-stack
view_layout:
# position: left
width: 33% # 1/3 van de breedte
cards:
- type: "custom:stack-in-card"
cards:
- type: custom:mushroom-entity-card
....
- type: vertical-stack
view_layout:
# position: right
width: 66%
cards:
gives me this result…
how do I remove the white zone left and right ?
Where did “view_layout” come from? I don’t see it in the vertical stack docs.
Having said that, panel view will expand the columns to fill the screen.
1 Like
Faecon
(Jo)
November 29, 2024, 6:22am
3
hmm. when I use type:panel I get unknown type encountered: panel
Faecon:
type:panel
title: "Home"
path: "home"
panel: true # !!!!!!!!!!!!!!!
cards:
1 Like
Faecon
(Jo)
November 29, 2024, 6:52am
5
Ildar_Gabdullin:
panel: true
wow, that simpel
and how can I make my first column smaller ?
Please do mark a post of Jack as a solution, technically they proposed a panel layout ).
To make a column smaller: go to main card-mod thread → 1st post → link at the bottom titled “fantastic post” → styles for horiz stack
1 Like
Faecon
(Jo)
November 29, 2024, 7:55am
7
type: custom:mod-card
card_mod:
style:
hui-horizontal-stack-card $: |
div#root > :first-child > * {
width: 30%;
flex: auto;
}
div#root > :last-child > * {
width: 70%;
flex: auto;
}
card:
type: horizontal-stack
like this ?
May be if you took it from my post, cannot check.
Faecon
(Jo)
November 29, 2024, 8:04am
9
i took it from here : 🔹 Card-mod - Add css styles to any lovelace card - #1731 by Ildar_Gabdullin ?
title: "Home"
path: "home"
panel: true
cards:
type: custom:mod-card
card_mod:
style:
hui-horizontal-stack-card $: |
div#root > :first-child > * {
width: 30%;
flex: auto;
}
div#root > :last-child > * {
width: 70%;
flex: auto;
}
card:
- type: horizontal-stack
cards:
but I get a white screen …
Compare your 2 codes from this & prev posts, they are different, the latest is wrong.
1 Like
Faecon
(Jo)
December 1, 2024, 1:28pm
12
title: "Home"
path: "home"
panel: true
cards:
- type: custom:mod-card
card_mod:
style:
hui-horizontal-stack-card $: |
div#root > :first-child > * {
width: 20%;
flex: auto;
}
div#root > :last-child > * {
width: 80%;
flex: auto;
}
card:
type: horizontal-stack
cards:
- type: vertical-stack
cards:
- type: "custom:stack-in-card"
- type: "custom:stack-in-card"
- type: custom:mod-card
style: |
ha-card {
margin-top: 170px;
}
card:
type: conditional
conditions:
- entity: input_select.dashboard_view
state: 'verlichting'
card:
type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: custom:mushroom-template-card
i still got a lot of white space between “the menu” and the stuff right …