Thanks to all for the replies. Now that I know the img tag is at the top I can always click there to modify the style. At this point I'm am just more curious than anything else. I'm still new to Flare and whenever I see inconsistencies like this I always assume I did something wrong and am eager to learn what that was.
Dave Lee wrote:The img tag is probably displayed at the top of the page, rather than the left.
It'll be displayed like that if the img tag is 'inline' within some paragraph text, i.e. there are characters between the opening p tag and the img tag.
Dave, you are correct. The img tag is indeed at the top. It is also at the top for all of them, though, including the ones that display the tag on the left. Oddly enough, there are spaces between the <p> and <img> tags in the code in all cases. I've posted the code for that page below.
devans wrote:I don't know the answer but could it be that some images are not in a format recognised by Flare, e.g. some images are not jpegs? Are the images that aren't tagged as images in a different folder within Flare?
Devans, good point. In this case they are all jpgs and they are all in the same folder.
ChoccieMuffin wrote:How was your document created? Was it an import or created in Flare? And when you said "I inserted it manually", what did you insert, and how? I'm guessing that you went into the Text Editor tab and added <p> before the image and </p> after the image, in which case I don't know why things are working, but it could be that you did something else.
It might be helpful to look at the code behind your page in the bit that isn't working properly, to help identify what's going on.
ChoccieMuffin I think this was created via import from Doc-To-Help, but I tried so many different things in March when I first got Flare that I can't be sure. I've pasted the code into Textpad and added comments at the bottom of each image in the page indicating where the <img> tag is displayed. I think only the first two instances display the tag on the left.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<html xmlns:MadCap="http://www.madcapsoftware.com/Schemas/MadCap.xsd" xml:lang="en-us" MadCap:lastBlockDepth="6" MadCap:lastHeight="2692" MadCap:lastWidth="584">
<head><title></title>
</head>
<body>
<h1>Title</h1>
<p>some text.</p>
<p>more text</p>
<MadCap:dropDown MadCap:conditions="General.Online">
<MadCap:dropDownHead>
<MadCap:dropDownHotspot>Example</MadCap:dropDownHotspot>
</MadCap:dropDownHead>
<MadCap:dropDownBody>
<p>A school board creates a system for all of its schools. </p>
<p>Each school’s playback... more text</p>
<p>
<img src="../../Resources/Images/billboard/Example billboard system.jpg" class="Thumbnail" />
</p>
<!-- this image above has the img tag on the left and the top -->
<p>more text with a list that follows:</p>
<ol>
<li>list item 1</li>
<li>list item 2</li>
</ol>
<p>
<img src="../../Resources/Images/billboard/Example billboard system_1.jpg" class="Thumbnail" />
</p>
<!-- this image above has the img tag on the left and the top -->
<MadCap:dropDown>
<MadCap:dropDownHead>
<MadCap:dropDownHotspot>How does the Administrator limit the kinds of messages a member can create?</MadCap:dropDownHotspot>
</MadCap:dropDownHead>
<MadCap:dropDownBody>
<p>some text</p>
<p> <img src="../../Resources/Images/billboard/Example billboard system_2.jpg" class="Thumbnail" /></p>
<p>more text.</p>
<!-- this image above has the img tag on the top only -->
<p>
<img src="../../Resources/Images/billboard/Example billboard system_3.jpg" class="Thumbnail" />
</p>
<!-- this image above has the img tag on the top only -->
<p>more text</p>
</MadCap:dropDownBody>
</MadCap:dropDown>
<MadCap:dropDown>
<MadCap:dropDownHead>
<MadCap:dropDownHotspot>drop-down title</MadCap:dropDownHotspot>
</MadCap:dropDownHead>
<MadCap:dropDownBody>
<p>some text </p>
</MadCap:dropDownBody>
</MadCap:dropDown>
<MadCap:dropDown>
<MadCap:dropDownHead>
<MadCap:dropDownHotspot>Where do the messages play?</MadCap:dropDownHotspot>
</MadCap:dropDownHead>
<MadCap:dropDownBody>
<p>Content created by the school displays exclusively on the school playback. Only the school board can create system-wide content (which they may do to announce bus cancelations or Parent Teacher days). </p>
</MadCap:dropDownBody>
</MadCap:dropDown>
<MadCap:dropDown>
<MadCap:dropDownHead>
<MadCap:dropDownHotspot>drop-down title</MadCap:dropDownHotspot>
</MadCap:dropDownHead>
<MadCap:dropDownBody>
<p>some text</p>
<p>more text.</p>
<p>
<img src="../../Resources/Images/billboard/Example billboard system_4.jpg" class="Thumbnail" />
</p>
<!-- this image above has the img tag on the top only -->
<p>Julie is also granted access to specific templates. </p>
<p>
<img src="../../Resources/Images/billboard/Example billboard system_5.jpg" class="Thumbnail" />
</p>
<!-- this image above has the img tag on the top only -->
<p>When Julie creates a message she selects where it should be displayed. This option is available when the message's template includes the location ('keywords') field.</p>
<p>
<img src="../../Resources/Images/billboard/Example billboard system_6.jpg" class="large" />
</p>
<!-- this image above has the img tag on the top only -->
<p>Jsome text.</p>
</MadCap:dropDownBody>
</MadCap:dropDown>
</MadCap:dropDownBody>
</MadCap:dropDown>
</body>
</html>