Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • praveen 113 posts 164 karma points
    Sep 14, 2011 @ 06:46
    praveen
    0

    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

  • Fuji Kusaka 2203 posts 4220 karma points
    Sep 14, 2011 @ 07:12
    Fuji Kusaka
    0

    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

    <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.

  • praveen 113 posts 164 karma points
    Sep 22, 2011 @ 03:21
    praveen
    0

    Thanks for your help Fuji/

Please Sign in or register to post replies

Write your reply to:

Draft