I'm facing an issue with the footer of my WordPress website, where it behaves differently in Chrome and Firefox. In Chrome, the right part of the footer seems to be moving out of alignment with the left part, while it displays correctly in Firefox.
You can view a skeleton of the page here: Any suggestions on how I can troubleshoot and fix this problem?
Below is a snippet of the relevant CSS code:
div.front-widgets * h3 {
color: #ffffff;
}
.template-front-page.two-sidebars .widget-area .front-widgets {
background: #2c2c2c;
float: left;
width: 60.9375%;
margin-bottom: 24px;
margin-bottom: 1.714285714rem;
height: 17.857142rem;
color: #ffffff !important;
}
.template-front-page .widget-area .widget {
padding: 20px 20px 0 20px;
}
.template-front-page .widget-area .widget:nth-child(odd) {
clear: right;
}
.template-front-page .widget-area .widget:nth-child(even),
.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
float: right;
width: 39.0625%;
}