I am trying to adjust the width of an image using css within typo3. Unfortunately, I only have access to the outer div container which is the custom border of the content element. To make the change, I added the following line to my css file:
.Bild-Startseite img { max-width:50% !important; }
The div container has the class Bild-Startseite
. However, when I resize the image, there is a blank area on the right side and the text does not align properly around it. How can I correct this issue so that the image is aligned to the right with the text flowing around it? It's important that this change only applies to this specific image and not others on the site, considering that typo3 restricts access to other containers.
You can view the site here:
Thank you