Hi,
Can I format the text in the 'Description' box?
Thank you in advance for your support.
Regards,
Claudio
X3 Photo Gallery Support Forums
The "Description" field supports basic html text formatting tags like <strong><em><br><span style="color:#990000"> etc. For example:ClaudioMaffucci wrote:Can I format the text in the 'Description' box?
<strong>This is some important information</strong>
<br>
<br>
This text is <em>emphasized</em>. And <span style="color: #990000">this is red color</span>, bye!<div> no, because it's block-level element, and isn't technically allowed by html (browsers) to go inside inline elements like <p> paragraphs. However, why not just use <span> instead of <div>? There is nothing you can do with <div> that you can't do with <span>.nampara17 wrote: Can we use <div>'s and classes?
<span class="myclass"></span>