Images embedded in paragraphs not displaying correctly

This forum is for all Flare issues related to importing files or projects.
Post Reply
MadCapScribe
Jr. Propeller Head
Posts: 3
Joined: Fri May 04, 2018 9:22 am

Images embedded in paragraphs not displaying correctly

Post by MadCapScribe »

Hey fellow propeller heads,

I recently converted a large project from Word to Flare and am having trouble with images that are embedded in paragraph text. They are displaying similarly to superscript text. An example sentence would read "Click the Menu icon (x) to display the XYZ menu." I can't figure out how to correct the display error. It looks correct in the WYSIWYG topic but displays incorrectly in the compiled project. Has anyone experienced this before?

Thanks for your input,
Brandt
ChoccieMuffin
Senior Propellus Maximus
Posts: 2632
Joined: Wed Apr 14, 2010 8:01 am
Location: Surrey, UK

Re: Images embedded in paragraphs not displaying correctly

Post by ChoccieMuffin »

Yes, and it's very annoying, isn't it!

I have an img class specifically for this, with adjustments to margins and padding. This works for me because of the size of my icons, you might want to have a bit of a fiddle with margins and padding.

Code: Select all

	img.IconInText
	{
		max-width: .5cm;
		padding: 0;
		margin-top: -.3em;
		padding-bottom: -3pt;
	}
Started as a newbie with Flare 6.1, now using Flare 2023.
Report bugs at http://www.madcapsoftware.com/bugs/submit.aspx.
Request features at https://www.madcapsoftware.com/feedback ... quest.aspx
MadCapScribe
Jr. Propeller Head
Posts: 3
Joined: Fri May 04, 2018 9:22 am

Re: Images embedded in paragraphs not displaying correctly

Post by MadCapScribe »

Thanks so much ChoccieMuffin. Your advice of creating an img style worked great! Too bad this has to be done, but now that there is a workaround, I can deal with it. :D
Post Reply