Currently facing an overflow dilemma.
My layout is designed to have a white container with rounded corners, while the footer inside the container is a shade of grey. To ensure the rounded corners of the footer div align with the container, I utilized 'overflow-x:hidden'.
The issue arises when the overflow is hidden, causing the CSS ribbon folds in the header to disappear.
I'm struggling to rearrange the DIVs in order to achieve a layout that features both rounded corners and the ribbon at the top.
My code is based on WordPress and Bootstrap. Below is a snippet of the code without the hidden overflow.
CSS:
/* CSS code here */
And here's how the HTML is structured:
<HTML code here>
The problem can be viewed here (the footer's corners are not rounded due to the unhid overflow to display ribbon folds).
Any assistance would be highly appreciated.