Collection Description Two Columns

I would like to split the collection description into two columns, so text is on the left and the video is on the right with a sensible size:

https://www.physioworldshop.co.uk/collections/three-section-electric-treatment-couches


Addax Treatment Couches are a premium range of medical treatment couches designed to enhance both patient comfort and practitioner efficiency. Shop@PhysioWorld provides these medical couches to practitioners to meet the highest standards in healthcare. We have a range of both electric and hydraulic medical treatment couches in stock, which are available with fast delivery across the UK. Our entire Addax treatment couch range come with a Lifetime Guarantee on their frame and a 5 year warranty on all other components. We offer fast UK delivery, where we deliver and install the couch into the room of your choice.

1 Like

Hey @ChrisW3

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @ChrisW3

You can add this code to Custom CSS of that section

.rte--header {
    display: flex;
    flex-direction: row-reverse;
}
@media (max-width: 749px) {
html .rte--header {
    flex-direction: column-reverse;
    align-items: center;
}
}

Hi Moeed, nearly perfect, thank you:

I would ideally like a bit more of a gap between the video and text.

Also it overhangs on mobile

1 Like

Hey @ChrisW3

Remove the previous code and try this updated code.


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Perfect on desktop, thank you.

Not quite right on mobile, the video goes too close to the right hand margin

1 Like

Hey @ChrisW3

Here’s the final updated version of the code that works fine for both devices.


If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed