I'm trying to format bullet text and I can't get it to work. The wrapped text is not aligned with the first line of text but starts at under the bullet. I want to wrap the text so all subsequent lines start under the first line of text. Can anyone help with this?
Example of what it looks like:
• Please use only the Previous Page and Next Page buttons to go back to a previous question or move on to the next one. Please do not use the back and forward arrows in your browser for navigation.
Sorry, forgot about the login, here is the source code used for the question:
<p style="text-align: justify;">
</p>
<p style="text-align: justify;">
<strong><span style="font-size: 14px;">Instructions for Completing the Survey</span></strong></p>
<p>
<strong> </strong></p>
<ul>
<li>
<strong>Please use only the Previous Page and Next Page buttons to go back to a previous question or move on to the next one. Please do not use the back and forward arrows in your browser for navigation.</strong></li>
</ul>
<p>
<strong> </strong></p>
<ul>
<li>
<strong>Because the survey saves automatically each time you click "Next Page", it is possible to close the survey and re-open it again at a future date. Just click no the link in your email again and it will take you to your partially completed survey with all completed pages saved.</strong></li>
</ul>
CSS issue : template.css dependant. Need a public example.
Denis
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
Do need to see what the CSS is doing as well; however, I'm not sure I understand the code. It looks like you are opening a list with the ul tag, but then closing it right away. Should look more like this:
Code:
<ul> <---This starts the list.
<li> <---This is one bullet in the list
<strong>Please use only the Previous Page and Next Page buttons to go back to a previous question or move on to the next one. Please do not use the back and forward arrows in your browser for navigation.</strong>
</li> <---This is the end of one bullet in the list
(NO UL TAGS HERE)
<li>
<strong>Because the survey saves automatically each time you click "Next Page", it is possible to close the survey and re-open it again at a future date. Just click no the link in your email again and it will take you to your partially completed survey with all completed pages saved.</strong>
</li>
</ul> <---- This ends the list.