Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 06-17-2009, 09:17 AM   #1
Senior Warrior Member
War Room Member
 
Dayne Dylan's Avatar
 
Join Date: Sep 2004
Location: USA
Posts: 2,573
Thanks: 132
Thanked 82 Times in 53 Posts
Default How can I increase space between bullets in HTML?

I've got a large list, all bulleted in a new website, and for the life of me...I can't figure out how to add a bit more space between them (white space). I'm sure this is simple.

Can someone chime in on what to do?

Thanks so much!
Dayne Dylan is offline   Reply With Quote
Old 06-17-2009, 09:19 AM   #2
Advanced Warrior
 
Derek S's Avatar
 
Join Date: Oct 2007
Location: Waterloo, Ontario, Canada.
Posts: 780
Thanks: 6
Thanked 112 Times in 53 Posts
Default Re: How can I increase space between bullets in HTML?

attach one or two <br> after each bullet in the code

--- Work Smart... Not Hard ---
Derek S is offline   Reply With Quote
Old 06-17-2009, 09:20 AM   #3
Mom On A Mission!
War Room Member
 
Karen Newton's Avatar
 
Join Date: Feb 2007
Location: Truro, Nova Scotia, Canada
Posts: 1,082
Thanks: 57
Thanked 64 Times in 46 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via AIM to Karen Newton Send a message via MSN to Karen Newton Send a message via Skype™ to Karen Newton
Default Re: How can I increase space between bullets in HTML?

Try just adding a new line code after each bullet:

Code:
<br />

Karen Newton is offline   Reply With Quote
Old 06-17-2009, 09:20 AM   #4
Freeman Creations
War Room Member
 
GrantFreeman's Avatar
 
Join Date: Nov 2006
Location: Somewhere next to a desert cactus, USA.
Posts: 1,078
Blog Entries: 6
Thanks: 273
Thanked 62 Times in 37 Posts
Social Networking View Member's Twitter Profile 
Contact Info
Send a message via Skype™ to GrantFreeman
Default Re: How can I increase space between bullets in HTML?

Horizontal space, or vertical space?

Grant
GrantFreeman is offline   Reply With Quote
Old 06-17-2009, 09:25 AM   #5
Senior Warrior Member
War Room Member
 
Dayne Dylan's Avatar
 
Join Date: Sep 2004
Location: USA
Posts: 2,573
Thanks: 132
Thanked 82 Times in 53 Posts
Default Re: How can I increase space between bullets in HTML?

I don't want a full break between the bullet points. That is too much space.

Maybe about half a break space would be good.

I have a large, vertical list Grant.
Dayne Dylan is offline   Reply With Quote
Old 06-17-2009, 09:29 AM   #6
Mom On A Mission!
War Room Member
 
Karen Newton's Avatar
 
Join Date: Feb 2007
Location: Truro, Nova Scotia, Canada
Posts: 1,082
Thanks: 57
Thanked 64 Times in 46 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via AIM to Karen Newton Send a message via MSN to Karen Newton Send a message via Skype™ to Karen Newton
Default Re: How can I increase space between bullets in HTML?

You can likely do this with CSS,

.half {
line-height: 0.5em;
}

Or try: line-height: 50%;

Then in your html:

<br class="half" />

Not sure if this will work or not, haven't tried it before, but I think it will...

Karen Newton is offline   Reply With Quote
Old 06-17-2009, 10:50 AM   #7
Advanced Warrior
 
Derek S's Avatar
 
Join Date: Oct 2007
Location: Waterloo, Ontario, Canada.
Posts: 780
Thanks: 6
Thanked 112 Times in 53 Posts
Default Re: How can I increase space between bullets in HTML?

The CSS might work. If not, you will have to create a table and just set the cell padding to what ever you want.

--- Work Smart... Not Hard ---
Derek S is offline   Reply With Quote
Old 06-17-2009, 11:06 AM   #8
Battle Hardened Warrior
 
TelegramSam's Avatar
 
Join Date: Apr 2009
Location: USA/UK
Posts: 690
Thanks: 44
Thanked 166 Times in 89 Posts
Default Re: How can I increase space between bullets in HTML?

css is the way to go.

google for it.
TelegramSam is offline   Reply With Quote
Old 06-17-2009, 11:14 AM   #9
Senior Warrior Member
War Room Member
 
Dayne Dylan's Avatar
 
Join Date: Sep 2004
Location: USA
Posts: 2,573
Thanks: 132
Thanked 82 Times in 53 Posts
Default Re: How can I increase space between bullets in HTML?

Thanks, got it licked.

Thanks to all of you Warriors!
Dayne Dylan is offline   Reply With Quote
Old 06-17-2009, 05:42 PM   #10
HyperActive Warrior
War Room Member
 
RedMatrix's Avatar
 
Join Date: Oct 2007
Location: Mission, TX, USA.
Posts: 333
Thanks: 224
Thanked 62 Times in 36 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Yahoo to RedMatrix Send a message via Skype™ to RedMatrix
Default Re: How can I increase space between bullets in HTML?

What was your final solution Dayne?

~Dave
RedMatrix is offline   Reply With Quote
Old 06-17-2009, 06:11 PM   #11
Senior Warrior Member
War Room Member
 
Steven Fullman's Avatar
 
Join Date: Mar 2007
Location: London, England
Posts: 3,771
Thanks: 1,006
Thanked 525 Times in 340 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via MSN to Steven Fullman Send a message via Skype™ to Steven Fullman
Default Re: How can I increase space between bullets in HTML?

Quote:
Originally Posted by RedMatrix View Post
What was your final solution Dayne?
Quote:
Originally Posted by JeyKumara View Post
Like to how did you resolve it at the end. thanks
He used Karen's CSS code, almost certainly.

I'm surprised more folks aren't into CSS. What with its ability to kick major web design ass, 'n all.

Steve

Steven Fullman is offline   Reply With Quote
Old 06-17-2009, 06:20 PM   #12
We Do Service Right
War Room Member
 
YellowDot Software's Avatar
 
Join Date: Dec 2008
Location: Philadelphia, PA
Posts: 164
Thanks: 2
Thanked 13 Times in 12 Posts
Contact Info
Send a message via AIM to YellowDot Software
Default Re: How can I increase space between bullets in HTML?

The way I would do it so I didn't have to put the code in every single <li> tag is this:

<ul class="paddedList">
<!-- list elements here -->
</ul>

Then the css:

.paddedList ul li {
padding-bottom:5px;
}

That means you just put the class on the unordered list tag and it applies it to all the li tags of any ul with class "paddedList" That means if you want to change something you don't have to remember to add/change the code in every element

www.HumanRewriter.com - The Web's Only Source For 100% People Powered Content Solutions.
My WSO: I'll Give You $5.00 Plus $43.50 In Bonuses To Try Human Rewriter Today
YellowDot Software is offline   Reply With Quote
Old 06-17-2009, 07:23 PM   #13
Senior Warrior Member
War Room Member
 
Dayne Dylan's Avatar
 
Join Date: Sep 2004
Location: USA
Posts: 2,573
Thanks: 132
Thanked 82 Times in 53 Posts
Default Re: How can I increase space between bullets in HTML?

Yep, I used some simple CSS coding. Worked like a charm.

Thanks everyone!
Dayne Dylan is offline   Reply With Quote
Old 06-17-2009, 08:48 PM   #14
Mom On A Mission!
War Room Member
 
Karen Newton's Avatar
 
Join Date: Feb 2007
Location: Truro, Nova Scotia, Canada
Posts: 1,082
Thanks: 57
Thanked 64 Times in 46 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via AIM to Karen Newton Send a message via MSN to Karen Newton Send a message via Skype™ to Karen Newton
Default Re: How can I increase space between bullets in HTML?

Quote:
Originally Posted by YellowDot Software View Post
The way I would do it so I didn't have to put the code in every single <li> tag is this:

<ul class="paddedList">
<!-- list elements here -->
</ul>

Then the css:

.paddedList ul li {
padding-bottom:5px;
}

That means you just put the class on the unordered list tag and it applies it to all the li tags of any ul with class "paddedList" That means if you want to change something you don't have to remember to add/change the code in every element
Cool.. there's always more than one way to skin a cat That's a more efficient method above.

Karen

Karen Newton is offline   Reply With Quote
Old 06-17-2009, 08:54 PM   #15
PromoteMyArticles.com
War Room Member
 
Allen Graves's Avatar
 
Join Date: Jun 2008
Location: Tampa, Florida
Posts: 2,469
Blog Entries: 13
Thanks: 610
Thanked 697 Times in 306 Posts
Default Re: How can I increase space between bullets in HTML?

You can also use inline css:

<ul>
<li style="margin-bottom: 6px;">item1 goes here</li>
<li style="margin-bottom: 6px;">item2 goes here</li>
<li style="margin-bottom: 6px;">item3 goes here</li>
</ul>

The css file solution is the best - but if you are only creating a single bulleted list on a webpage or article or blog or whatever, inline CSS will work fine too.

I love CSS and I too don't see why more people don't use it.

Allen

Just another new article directory.
Allen Graves is offline   Reply With Quote
Old 06-17-2009, 11:47 PM   #16
"Working On A Dream"
War Room Member
 
Valeriu Popescu's Avatar
 
Join Date: Dec 2002
Location: Alderaan
Posts: 419
Thanks: 13
Thanked 2 Times in 2 Posts
Social Networking View Member's Myspace Profile  View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Default Re: How can I increase space between bullets in HTML?

For a simple paragraph, and sometime for headers, I use a line like this:

<p style="margin-top: 10px; margin-bottom: 8px;">You text here...</p>

Valeriu

Web 2.0 Joint Venture Secrets EXPOSED System => Learn How To Design A Joint Venture Strategy That Gets You Tons Of New Customers and Pulls In Amazing Profits!
* Discover How To Make Up To $1,000 Every Week With This FREE Online Toolkit!*
>>> Local Internet Marketing Services - Consumers Are Searching The Internet Right Now Looking For Your Product Or Service! Are You There? We offer: Local Maps Submission, Internet Marketing Consulting, SEO and SMM services.
Valeriu Popescu is offline   Reply With Quote
Old 06-18-2009, 01:08 AM   #17
HyperActive Warrior
War Room Member
 
RedMatrix's Avatar
 
Join Date: Oct 2007
Location: Mission, TX, USA.
Posts: 333
Thanks: 224
Thanked 62 Times in 36 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Yahoo to RedMatrix Send a message via Skype™ to RedMatrix
Default Re: How can I increase space between bullets in HTML?

Quote:
Originally Posted by Dayne Dylan View Post
Yep, I used some simple CSS coding. Worked like a charm.

Thanks everyone!
We want to see the actual code.

~Dave
RedMatrix is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Tags
bullets, html, increase, space

Thread Tools

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



All times are GMT -6. The time now is 01:37 AM.