Project

General

Profile

Help with image width

Added by Pasquale Meo 3 months ago

Hi everyone, I'm writing to ask for help with configuring image width for redmine 5.1.1

Basically to import the image I use the code:

![ ](image.jpg)

and then I upload the image.

then I tried entering {width:450px} to change the width, but it didn't help.

Could anyone tell me, if possible with an example, how to adjust the image to the size I want?

Thank you


Replies (2)

RE: Help with image width - Added by Andy Pack about 1 month ago

Hi Pasquale,

You can use our CMS plugin for resizing images, there is an article on this point —> https://www.redmineup.com/pages/help/cms/images

Brs,
Andy

RE: Help with image width - Added by Holger Just about 1 month ago

It seems you use Markdown formatting (or the newer CommonMark formatting) in your Redmine. Here, you can use actual HTML and CSS to format your images.

With CommonMark, you can e.g. use the following HTML:

<img src="image.jpg" alt="My Image" style="width:450px;">
    (1-2/2)