I have a background image that needs to display in the footer region regardless of whether a block is assigned to that region or not. As far as I can tell, the footer region markup is added only when a block has been assigned. Adding a wrapper div around the footer code fixes this problem. Is there a better way of handling this?
Comments
Comment #1
stephthegeek commentedThat's pretty much the way to do it. Usually the opposite case is desired, so conditional checks around the markup is a good thing, but if your design calls for it to always be there, you need to take out the if statement or add your own wrapper to do the styling on.
Comment #2
atelier commentedGreat. Thanks for the feedback.