Hi Mossawi,
Can you post your code please?
Without really knowing what you mean, you could simply put your bullet points in a ul.
html for a ul works as follows:
Code:
<ul>
<li>bullet point</li>
<li>bullet point 2</li>
</ul>
As far as hiding the bullet points, not really sure exactly what you mean. If you mean getting rid of the bullet format, you can style the ul by saying in your CSS.
You can also control line width of your <li> elements by giving them a fixed width, e.g.
Code:
li{
width: 300px;
}
Hope this helped a little..but again please post the code.
Bookmarks