Channel Panel Layout
Change the panel layout to be a grid instead of using position: absolute; to make everything align instead of having everything smashed together
how to do it:
Remove all inline stylings of .channel-panels-container
Remove all inline stylings of the panels <div> tags
Add the following styles:
.channel-panels-container {
display: grid;
grid-template-columns: repeat(4,1fr);
padding: 5rem;
/* change grid-template-columns with @media or @container to fit everything on different screen sizes */
}
1
vote
MiniKingDK
shared this idea
-
MiniKingDK commented
I can also see that the stylings for .channel-panels-container is located at "pages.channel-about-f3db5d44f030f2563149.css" at line 1