Umbraco: v 4.7 DataType: Richtext editor (TinyMCE v3 wysiwyg)
In the richtext editor, I have the following links, what I want to achive is have 6pts space between each link below, how can I achive this in the richtext editor, please help
<p> <a href="#sexuality">Sexuality</a><br> <a href="#position-of-women">The position of women and marriage</a><br> <a href="#myths-and-beliefs">Traditional myths and beliefs</a><br> <a href="#the-role-of-men">The role of men</a><br> <a href="#religion">Religion</a><br> <a href="#the-role-of-circumcisors">The role of circumcisors</a><br> <a href="#social-pressure">Social pressure</a> </p>
One way of doing this is to use <u> <li> list items and style it in your css. This would be somthing like
<ul> <li> <a href="#sexuality">Sexuality</a><li/> <li><a href="#position-of-women">The position of women and marriage</a></li> <li><a href="#myths-and-beliefs">Traditional myths and beliefs</a></li> <li><a href="#the-role-of-men">The role of men</a></li> <li><a href="#religion">Religion</a></li> <li><a href="#the-role-of-circumcisors">The role of circumcisors</a></li> <li><a href="#social-pressure">Social pressure</li> </ul>
and in your css you could say something like
ul.content li a{ font:normal 12px/24px arial; }
12px will be the font size and 24px here will be the line-height.
Richtext editor (TinyMCE v3 wysiwyg)
Hi there
Umbraco: v 4.7
DataType: Richtext editor (TinyMCE v3 wysiwyg)
In the richtext editor, I have the following links, what I want to achive is have 6pts space between each link below, how can I achive this in the richtext editor, please help
<p>
<a href="#sexuality">Sexuality</a><br>
<a href="#position-of-women">The position of women and marriage</a><br>
<a href="#myths-and-beliefs">Traditional myths and beliefs</a><br>
<a href="#the-role-of-men">The role of men</a><br>
<a href="#religion">Religion</a><br>
<a href="#the-role-of-circumcisors">The role of circumcisors</a><br>
<a href="#social-pressure">Social pressure</a>
</p>
Many thanks in advance,
Kind Regards
Hi Praveen,
One way of doing this is to use <u> <li> list items and style it in your css. This would be somthing like
and in your css you could say something like
12px will be the font size and 24px here will be the line-height.
Thanks for your help Fuji/
is working on a reply...