Jump to content

Entries


kc1296426

Recommended Posts

I need a little more assistant on doing this because I'm new to HTML. Thanks!

That's why the tutorials are there really, to teach html (plus other webprogramming). It's really the best way to learn. The point of this forum is to point people in the right direction. If they have advanced code that doesn't work, it's likely someone here can find the error they can't. The best way to start is the simply read the html tutorial.
Link to comment
Share on other sites

I need a little more assistant on doing this because I'm new to HTML. Thanks!

Here is an example of how to create your list:This is a regular list which I'm sure you've done before. I added the class="nobullets" so it is unique and can be easily modified with CSS.HTML:
<ul class="nobullets"><li>smileys</li><li>laffytaffy</li><li>bun b.</li></ul>

.nobullets means the <ul>, so I am removing the margins which is on top and bottom of the list and the padding which is on the left. Then .nobullets li means the <li> of the <ul> with class nobullets. list-style-type: none; removes the bullets.CSS:

.nobullets { margin: 0; padding: 0; }.nobullets li { list-style-type: none; }

That's all!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...