Hi,
I am referring to the “Review section for Product page”.
Your upload image issue is related to your host, please contact them and report the issue. They may need to increase the available memory for your WP site.
Your 50/50 content split looks like that because there is not enough room to have a tour tabs section with 50% of the page with of a small screen. You’d need to change the CSS to try and force a fit. Here is an example for an iPad and small screen:
iPad:
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
.spb_tour .nav-tabs {
float: none;
width: 100%;
padding: 0 25px;
}
.spb_tour .tab-content {
padding-left:0;
}
.hero-content-split #main-container .container {
max-width: 100%;
padding-left: 15px;
padding-right: 15px;
}
}
iPhone:
@media only screen and (max-width: 479px) {
.spb_tour .nav-tabs {
float: none;
width: 100%;
padding: 0 25px;
}
.spb_tour .tab-content {
padding-left:0;
}
.hero-content-split #main-container .container {
max-width: 100%;
padding-left: 15px;
padding-right: 15px;
}
}
Thanks,
David.