Page 1 of 1

images on textpage

Posted: 16 Aug 2011, 07:24
by MetAtroN
I have a problem with textpage in my gallery. I wished to create a list of my skills, with image showing 1 to 5 stars, indicating my proficiency in each skill. I've created PNG images with transparency, but after I put them where they're supposed to be, refreshed the gallery, my textpage was completely messed up. As you can see on the attachements in the editor all seems fine, but on the acctual page all is shifted and for reasons unknown style formating is lost.

This is what HTML editor shows (I formated it a bit, because in editor all was in one long line):
Code
<p>Name: Jakub Kluba</p>
<p>Simple BIO:</p>
<p>Languages I speak:</p>
<ul><li>polish - fluent</li>
<li>english - fluent</li></ul>
<p>Software I know:</p>
<ul><li>3D Studio MAX</li></ul>
<p>Rendering Engines:</p>
<img src="/temp/ocena/4.png" />Vray<br />
<img src="/temp/ocena/3.png" />Maxwell<br />
<img src="/temp/ocena/2.png" />Mentalray
<p>Tools:</p>
<ul><li>Real Flow</li>
<li>MassFX</li>
<li>PhysX</li>
<li>RayFire</li>
<li>Houdini</li></ul>
<p>Other software:</p>
<ul><li>AutoCAD</li>
<li>ArchiCAD</li>
<li>Solidworks</li>
<li>SolidCAM</li>
<li>SketchUp</li>
<li>Photoshop</li>
<li>Corel Draw</li></ul>

Re: images on textpage

Posted: 16 Aug 2011, 09:37
by Artur
Hej!

Try use something like this:
Code
<textformat leading="-50"><p><img src="/temp/ocena/4.png" height="..." width="..." />Vray</p></textformat>
<textformat leading="-50"><p><img src="/temp/ocena/3.png".png" height="..." width="..." />Maxwell</p></textformat>
<textformat leading="-50"><p><img src="/temp/ocena/2.png".png" height="..." width="..." />Mentalray</p></textformat>
Where "..." is your .png file width and height

Re: images on textpage

Posted: 17 Aug 2011, 05:05
by MetAtroN
Close but no cigar ;) Looks like I'm going to have to pass on this idea.
Capture_03.JPG
Capture_03.JPG (8.9 KiB) Viewed 5005 times

Re: images on textpage

Posted: 19 Aug 2011, 01:41
by mjau-mjau
MetAtroN wrote:Close but no cigar ;) Looks like I'm going to have to pass on this idea.
Looks like you were nearly there ... Unfortunately, one thing is for sure: Flash textfields are hard to work with in terms of html layout as soon as you want to add images, and <textformat leading=""> is your only salvation for aligning text. In your last snapshot, it looks to me like you just need to add another <br/> to get the new line after the list ...

Re: images on textpage

Posted: 19 Aug 2011, 03:24
by MetAtroN
Will try, if it won't work I'll just insert an image there, prepared earlier in photoshop ;)