I reworked some of the CSS but still can’t resolve either problem. Also,, how can I get the boxes to be the same height when they flip? Sharla
l
#mainText {
margin-left:15px;
margin-top:5px;
}
.front {
display:block;
position:relative;
min-height:255px;
}
.flip3D {
width:305px;
height:255px;
float:left;
margin-left:auto;
margin-right:auto;
margin-bottom:150px
}
.flip3D > .front {
margin-right:5px;
position:absolute;
transform:perspective(600px) rotateY(0deg);
-webkit-transform:perspective(600px) rotateY(0deg);
background:#79A696;width:305px; height:22px;/*won't change height.*/
border-radius:7px;
backface-visibility:hidden;
-webkit-backface-visibility:hidden;
transition:transform .5s linear 0s;
transition: -webkit-transform .5s linear 0s;
font-size:24pt;
}
.flip3D > .back {
margin-right:5px;
position:absolute;
transform:perspective(600px) rotateY(180deg);
-webkit-transform:perspective(600px) rotateY(180deg);
background:black; width:305px;
height:225px; /*change the box height*/
border-radius:7px;
padding:10px;
color:#ffffff;
backface-visibility:hidden;
-webkit-backface-visibility:hidden;
transition:transform .5s linear 0s;
transition: -webkit-transform .5s linear 0s;
}
.flip3D:hover > .front{
transform: perspective(600px) rotateY(-180deg);
-webkit-transform: perspective(600px) rotateY(-180deg);
}
.flip3D:hover > .back{
transform: perspective(600px) rotateY(0deg);
-webkit-transform: perspective(600px) rotateY(0deg);
}
#contactUs {
clear:left;
background-color:#79A696;
height:80px;
width:210px;
margin-top:120px;
margin-left:auto;;
margin-right:auto;
border-radius:50%;
text-align:center;
color:#ffffff;
font-family:'Chivo', sans-serif;
font-size:24pt;
}
#footer-core {
text-align:center;
}
#header-core {
display:none;
}
#sub-footer {
display:none;
}
#footer-core h3.footer-widget-title {
display: none;
}