Footer CSS Removed in Update

The following footer CSS was removed in the latest update:

.x-colophon {
position: relative;
border-top: 1px solid #d4d4d4;
background-color: #fff;
box-shadow: 0 -0.125em 0.25em 0 rgba(0,0,0,0.075);
}

I have since gone through all my website and added this back, but just wanted to see if this was intentional or not. Thanks!

Hi @hollandwebdevelopment,

Updating X/Pro and Cornerstone should should remove any custom CSS you have added in X/Pro > Theme Options > CSS:

It might be caused by another issue but we can’t tell for sure right now. Please let us know in case it happens again.

Thank you.

Just to clarify, this was the default X Theme provided CSS in integrity.css that no longer exists after both the 7.2.0 and newest 7.2.1 updates.

I just wanted to alert you since updating the theme has caused a design change on integrity websites.

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.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.