Hey, I’m not sure if this is the perfect solution or if it will mess up other stuff but I’ve managed to piece together bits and pieces from other people’s questions – and this is how I got it working.
If anyone sees a problem with this, please let us know!
/* This is to hide the original title */
.single.single-product .heading-text {
display: none;
}
/* This makes the new product title */
.woocommerce div.product .entry-title {
display: block;
float: right;
width: 48%;
text-align: left;
font-size: 26px;
margin-bottom: 30px;
}
/* This fixes the title for mobile screen */
@media (max-width: 600px) {
.woocommerce div.product .entry-title {
float:left;
}
}