
Originally Posted by
nicksab
Removing the css code that was previously added in stylesheet_zcustom.css and switching display from grid to flex ( see code below) seems to have fix my first issue.
Code:
@media (min-width: 992px) {
#contentMainWrapper {
display: grid;
grid-template-columns: auto 1fr auto;}
}
to
Code:
@media (min-width: 992px) {
#contentMainWrapper {
display: flex;}
}
I am not sure how to fix the opc overlay problem when the hamburger menu is out. The demo site has not issue though.
I think this might be a better option the resizing your inputs for opc.
stylesheet_zcustom
Line 267
** need to change background to transparent;"
Code:
#checkoutoneBody .opc-view {
position: relative;
z-index: 2;
box-shadow: 3px 3px 5px 6px #ccc;
padding: 1rem;
background: #fff;
margin-bottom: 1.5rem;
border-radius: 5px;
}
Site looking good. Just one thing i noticed on your product page the drop down for the date is not aligning correctly.
path: stylesheet_dp_theme.css
add to the very bottom of stylesheet
Code:
#ui-datepicker-div {
width:auto
}