format of bullets in page builder

Options

Does anyone know how to change the format of text when using the bullet function in page builder?  The default text format is "format" and I'd like it to be "paragraph".  I found a work-around by inserting a bullet via the "special character insert" button but it's not an ideal solution.

Thanks,

Shawn

Green Mountain Club

Tagged:

Comments


  • The default text format is "format" and I'd like it to be "paragraph".

    Actually I think that 'format' in that dropdown in the wysiwyg is the name of the field. It's NO format. It could say 'choose one' or something like that instead.

    I think if you just select/highlight your bulleted list and change the Format dropdown to 'paragraph' it should do it.

    What is really happening there in the html is that you are starting with an 'unordered list' which looks like this...

    <ul>

         <li>item one</li>

         <li>item two</li>

    </ul>

    An unordered list is a bulleted list. (An ordered list uses numbers.)

    The lists themselves have styles associated with them, so you don't need to add any more tags. (You may want to edit your CustomStyle.css sheet to make lists look how you like them.)

    If you DO change the format to paragraph you are really just adding paragraph tags inside each list item like this...

    <ul>

         <li><p>item one</p></li>

         <li><p>item  two</p></li>

    </ul>

    So - I don't think you can make the default format be 'paragraph', but you CAN change the style of lists in your CSS sheets to match your paragraph styles better.

    Regards, Brian

Categories