Help with footer layout

Ok so I watched Kevin's video about alternative to wrapper and decided to refactor my project using that method but now I have a problem doing the layout of the footer that's full-width and because of that is itself a grid container with those grid columns style and I originally had it as a flex container that wrapped. To make it grid I need to define new columns but I can't since they're already defined and if I overwrite it it breaks and I'm not sure how to do it safely. The result should be like in the picture, if code is needed just ask me. (Note that the project of the footer in the image is not done with the grid layout of Kevin's video)
No description
7 Replies
MarkBoots
MarkBoots7mo ago
Kevins layout is based on a single content column. If you want multiple colums within the content area, you'll just insert another div with its own layout
! nier
! nier7mo ago
so I still need a container for the footer
MarkBoots
MarkBoots7mo ago
If you want multiple colums yes. In your preview you have 3 columns inside the content area. So make it a grid or flex. That way you can also make it resonsive.
! nier
! nier7mo ago
yeah I already have the code to to do it flex, I just need to wrap it inside a container that will have full-width class, is that right?
MarkBoots
MarkBoots7mo ago
Full width, breakout of content, you can choose. But yes. Youll need a another wrapper for the 3 columns
! nier
! nier7mo ago
that makes sense, thank you 👍
MarkBoots
MarkBoots7mo ago
No problem. Good luck on the project