Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Need Help Making Bullets On Web Page
Old 04-26-2006, 01:10 PM Need Help Making Bullets On Web Page
Experienced Talker

Posts: 43
Trades: 0
Hi,

How do you make bullets on a web page and get the words next to them
to appear close to the bullets.

Right now I'm using nvu & the words are about 1 '' on the right from the
bullets & I also need to put some in the middle of the page.

Is there a WYSIWYG program that is good for making bullets or
an online tutorial to show me how to do this.

Gary
highbids is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-26-2006, 01:20 PM Re: Need Help Making Bullets On Web Page
Super Talker

Posts: 102
Trades: 0
Unordered lists are used for this. As it's name implies it's a list with unordered items so every item get's a bullet. Ordered lists on the other hand are ordered, and every list item gets a number. Like so;
  • Item 1
  • Item 2
  • Item 3
  • Item 4
  1. Item 1
  2. Item 2
  3. Item 3
  4. Item 4

The actual html you use for an unordered list (the one with the bullets) is;
Code:
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
Hope that helped you out ...
ghettobert is offline
Reply With Quote
View Public Profile
 
Old 04-26-2006, 01:20 PM Re: Need Help Making Bullets On Web Page
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,383
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
it's an ordered list
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 04-26-2006, 01:40 PM Re: Need Help Making Bullets On Web Page
Experienced Talker

Posts: 43
Trades: 0
I'll try it. Do you know of a WYSIWYG web page program that can do this.

Gary
highbids is offline
Reply With Quote
View Public Profile
 
Old 04-26-2006, 02:23 PM Re: Need Help Making Bullets On Web Page
blue-dreamer's Avatar
King Spam Talker

Posts: 1,222
Location: Middle England
Trades: 0
All WYSIWYG editors should have this function - just look for "Insert list" or similar. Alternatively just paste ghettobert's example into your html and edit to your needs.
blue-dreamer is offline
Reply With Quote
View Public Profile
 
Old 05-01-2006, 01:56 PM Re: Need Help Making Bullets On Web Page
Average Talker

Posts: 19
Trades: 0
Depending on how fancy you want the bullets to be, you can also add everything into a 2-column table - one column for the bullets and the other one for the text. You can specify the column width for the bullet column and get the right spacing with the bullets/text that way.

I'd only recommend doing that if you want to use "glass" bullets, or something other than the standard "black dot".
sandrac is offline
Reply With Quote
View Public Profile
 
Old 05-01-2006, 03:26 PM Re: Need Help Making Bullets On Web Page
Experienced Talker

Posts: 43
Trades: 0
I'll do that but the problem I'm having now is the spacing between the bullets

I have used numerous bullet code and nothing seems to make spaces between
them.

I need about 1'' to 1/2 space between text, what code will do this.

I have tried NVU & Composer and it looks fine when I'm looking at it
but when I view it in the browser it isn't the same.

Gary,
highbids is offline
Reply With Quote
View Public Profile
 
Old 05-01-2006, 09:47 PM Re: Need Help Making Bullets On Web Page
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
Well make use of the html space tag. Put the space code before every thing you want by the bullet. Best way to do it other than margins.

HTML Space Code.
HTML Code:
&nbsp;
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
Old 05-02-2006, 12:55 AM Re: Need Help Making Bullets On Web Page
Experienced Talker

Posts: 43
Trades: 0
Is there some code that I can use like the one down below that
will do this, instead of inserting &nbsp; on every sentense.

Something like this, but will space the paragraphs.

<center>
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul>
</center>

Gary
highbids is offline
Reply With Quote
View Public Profile
 
Old 05-02-2006, 11:44 PM Re: Need Help Making Bullets On Web Page
colochris's Avatar
Ultra Talker

Posts: 379
Trades: 0
I use frontpage and it has a prebuilt bullets, your program should have it too
__________________

Please login or register to view this content. Registration is FREE
colochris is offline
Reply With Quote
View Public Profile
 
Old 05-02-2006, 11:52 PM Re: Need Help Making Bullets On Web Page
Experienced Talker

Posts: 43
Trades: 0
It does but getting them to center is a problem, I'll just keep them to the
left.

Gary
highbids is offline
Reply With Quote
View Public Profile
 
Old 05-03-2006, 12:00 AM Re: Need Help Making Bullets On Web Page
carterdea's Avatar
Ultra Talker

Posts: 353
Location: Arizona
Trades: 0
use dreamweaver. I am a old school coder myself, but I heard its the best and its the industry standard.
carterdea is offline
Reply With Quote
View Public Profile Visit carterdea's homepage!
 
Old 05-03-2006, 12:07 AM Re: Need Help Making Bullets On Web Page
Experienced Talker

Posts: 43
Trades: 0
I think I will, I know it's the best anyway and I'm tired of messing with this.

Gary,
highbids is offline
Reply With Quote
View Public Profile
 
Old 05-03-2006, 12:18 AM Re: Need Help Making Bullets On Web Page
carterdea's Avatar
Ultra Talker

Posts: 353
Location: Arizona
Trades: 0
and you can always use css to center it.

Code:
<div id="list">
<li>blank</li>
<li>blank</li>
<li>blank</li>
</div>
Code:
<styles type="text/css">
#list
{
text-align:center;
}
</styles>
That might be a tiny bit wrong. That was just off the top of my head.
carterdea is offline
Reply With Quote
View Public Profile Visit carterdea's homepage!
 
Old 05-03-2006, 12:22 AM Re: Need Help Making Bullets On Web Page
Experienced Talker

Posts: 43
Trades: 0
Thanks I'll try it.

Gary
highbids is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Need Help Making Bullets On Web Page
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.57173 seconds with 12 queries