Click to See Complete Forum and Search --> : Bullets and Numbering


Picasa
09-22-2005, 05:16 PM
Can someone please explain why the following is not working...

<B>On-Site Training</B>

Mensana offers on-site training for your convenience. Benefits of on-site training include:
<UL>
<LI>Affordable pricing
<LI>Quickest way to learn Lytec Medical
<LI>Convenient - We come to your office
<LI>We can train one or 20 office staff members for the same price
<LI>Customized - We tailor our training around your practice
</UL>

<b>Web-Based Training</b>
Our interactive web-based training allows one or more of your staff members to connect to our computer system using your existing Internet connection. Benefits of interactive Web training include:
<ul>
<li>Low cost - No travel expenses or lost office hours
<li>Convenient - Training can be scheduled at a time that is convenient for your office staff
<li>Multiple Sessions - Training can be split up into multiple training sessions so your staff is not overwhelmed with information
<li>Training is done with one of our expert Lytec Medical support personnel
<li>Interactive - Your staff will have the ability to do hands-on training
<li>Communication - Your staff will be in constant communication over the phone during the training session
<li>Works with dial-up, ISDN, DSL, ADSL, and T1-T3 connections
</ul>

<b>Training CDs</b>
These comprehensive interactive training CDs allow you to learn not only by viewing but also by doing! Organized in a logical sequence, these in-depth training CDs contain several days' worth of training. Easy-to-use straightforward interactive screens are full of audio and video clips. The friendly online instructor holds your hand through the key areas of Lytec and helps you set your practice up the right way. Over 16 hours of hands-on interactive instruction bookmarked for easy reference.

Thanks.

soccer362001
09-22-2005, 06:53 PM
The first thing I would try is closing all the open <li> tags. If that does not work could you explain your problem in a little more detail?

NogDog
09-22-2005, 06:54 PM
This would be a better and more semantically meaningful markup. If it doesn't work, then we'll need to know what you mean by "is not working":

<h3>On-Site Training</h3>
<p>Mensana offers on-site training for your convenience. Benefits of on-site
training include:</p>
<ul>
<li>Affordable pricing</li>
<li>Quickest way to learn Lytec Medical</li>
<li>Convenient - We come to your office</li>
<li>We can train one or 20 office staff members for the same price</li>
<li>Customized - We tailor our training around your practice</li>
</ul>
<h3>Web-Based Training</h3>
<p>Our interactive web-based training allows one or more of your staff members
to connect to our computer system using your existing Internet connection.
Benefits of interactive Web training include:</p>
<ul>
<li>Low cost - No travel expenses or lost office hours</li>
<li>Convenient - Training can be scheduled at a time that is convenient for your
office staff</li>
<li>Multiple Sessions - Training can be split up into multiple training sessions
so your staff is not overwhelmed with information</li>
<li>Training is done with one of our expert Lytec Medical support personnel</li>
<li>Interactive - Your staff will have the ability to do hands-on training</li>
<li>Communication - Your staff will be in constant communication over the phone
during the training session</li>
<li>Works with dial-up, ISDN, DSL, ADSL, and T1-T3 connections</li>
</ul>
<h3>Training CDs</h3>
<p>These comprehensive interactive training CDs allow you to learn not only by
viewing but also by doing! Organized in a logical sequence, these in-depth
training CDs contain several days' worth of training. Easy-to-use
straightforward interactive screens are full of audio and video clips. The
friendly online instructor holds your hand through the key areas of Lytec and
helps you set your practice up the right way. Over 16 hours of hands-on
interactive instruction bookmarked for easy reference.</p>

Picasa
09-22-2005, 07:40 PM
What I mean by "it doesn't work" is that every line of text has a bullet. Also, I tried closing all the <li> tags but that yielded double-spacing between bullets.

soccer362001
09-22-2005, 07:44 PM
It's supposed to have a bullet, if you don't want the bullets use
<style type="text/css">
ul
{list-style-type:none;}
li
{list-style-type:none;}
</style>

Zarel
09-22-2005, 07:48 PM
What I mean by "it doesn't work" is that every line of text has a bullet. Also, I tried closing all the <li> tags but that yielded double-spacing between bullets.
It's supposed to have a bullet.

What kind of list do you want, if you don't want a bulleted list?

Picasa
09-22-2005, 07:52 PM
Thanks in advance for your patience, I've never done this...

After I use </ul> to close the open <ul> tag, every line of text thereafter has a bullet. Also, the items I do want bulleted are double-spaced, not single-spaced.

Am I making sense?

soccer362001
09-22-2005, 07:54 PM
Close your <li> tags and adjust your margins and padding in css.

Picasa
09-22-2005, 07:59 PM
Done...almost there. How to adjust padding...

Kravvitz
09-22-2005, 08:18 PM
http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding
http://www.w3.org/TR/REC-CSS2/propidx.html

Picasa
09-22-2005, 08:38 PM
Got it!! Thanks all...