Hello @hollandwebdevelopment,
Thanks for the clarifications. I can confirmed that the css code were removed and modified in the latest version. instead of having this code:
.x-colophon {
position: relative;
border-top: 1px solid #000;
background-color: #121212;
box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.075);
}
It has been updated and broken down into this code:
.x-colophon {
position: relative;
}
.x-colophon.top {
border-top: 1px solid #d4d4d4;
padding: 5% 0 5.25%;
background-color: #fff;
box-shadow: 0 -0.125em 0.25em 0 rgba(0,0,0,0.075);
}
.x-colophon.bottom {
padding: 10px 0;
font-size: 10px;
text-align: center;
color: #7a7a7a;
}
.x-colophon+.x-colophon {
border-top: 1px solid #e0e0e0;
border-top: 1px solid rgba(0,0,0,0.085);
box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.8);
}
Hope this explains it briefly.