Possibility to Mirror Images

Is there a media/image library on preview websites like WordPress?

Also, can we flip images 180 degrees?
I’m working on a website for a driving school.
The UK has the steering wheel on the right. The built-in template image has the steering wheel set on the left.

2 Likes

Hi @Naz_Haque,

it is currently not possible to mirror images on the x or y-axis. I created a feature request ticket for you.

Meanwhile, you can use https://www.resizepixel.com/

Is there an option to download the built in images in the themes on Sitejet so I can then flip it.
I couldn’t see an option / function for this.

When you want to use the template images, you can inspect the code with the developer tools and find them in the element tab or network tab. Then you can open the images and download them.

1 Like

Hey @Naz_Haque! :waving_hand:

That’s a great point — flipping images is super handy when adapting templates for different countries, like switching the driving side from US to UK.

If you ever need to flip an image (like the steering wheel), here’s a simple way to do it with just a bit of code:
Mirror an Image Horizontally:
What to Do in Sitejet:

  1. Go to the page where you want to flip the image.
  2. Drag a new “Custom Code” element into the section where your image should go.
  3. Click the element and open the HTML editor (you’ll see a </> button).
  4. Paste this code in:

html

<img src="your-image.jpg" style="transform: scaleX(-1);">

This mirrors the image left-to-right — great for right-hand drive visuals.

Hope that helps make your layout more flexible! Let me know if you run into anything — and feel free to follow if you want more little code snippets like this. I drop easy solutions often :blush:

2 Likes

Thank you, I appreciate you responding. Good to know for the future.

1 Like