Hello @Brent_St,
I was able to logged in and check your CSS.
.single-x-portfolio .entry-featured {
width: 40%;
}
.single-x-portfolio .entry-wrap {
float: right;
width: 60%;
text-align: center;
}
You were missing float: left; in the code. Please have this updated and use this code instead:
@media(min-width: 980px){
.single-x-portfolio .entry-featured {
width: 38%;
float: left;
}
.single-x-portfolio .entry-wrap {
float: right;
width: 60%;
text-align: center;
}
}
Please be advised that custom coding is outside of our support scope. The points above will be a good starting point and if you are interested you can learn more about CSS and CSS selectors. Check the details here.
Hope this helps.