Copy link to clipboard
Copied
Is it normal that a picture in a content is automatically indent, as soon as a figure caption is used?
You haven't said which version of RoboHelp, that does affect answers.
In 2020 if you look at the topic in source view you will see something like
<figure>
<figcaption>Caption</figcaption>
<img align="left" src="../assets/images/imagename.png" title="Caption" />
</figure>
That indent looks like the default behaviour of the figure style. See HTML figure Tag (w3schools.com)
Add the following to your CSS and that will fix it.
figure {
margin-left: 0pt;
}
__________________________________________
...Copy link to clipboard
Copied
You haven't said which version of RoboHelp, that does affect answers.
In 2020 if you look at the topic in source view you will see something like
<figure>
<figcaption>Caption</figcaption>
<img align="left" src="../assets/images/imagename.png" title="Caption" />
</figure>
That indent looks like the default behaviour of the figure style. See HTML figure Tag (w3schools.com)
Add the following to your CSS and that will fix it.
figure {
margin-left: 0pt;
}
________________________________________________________
See www.grainge.org for free Authoring and RoboHelp Information