![]() | | ||||||||
| | #1 |
| Senior Warrior Member War Room Member Join Date: Sep 2004 Location: USA
Posts: 2,573
Thanks: 132
Thanked 82 Times in 53 Posts
|
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! |
| | |
| | #2 |
| Advanced Warrior Join Date: Oct 2007 Location: Waterloo, Ontario, Canada.
Posts: 780
Thanks: 6
Thanked 112 Times in 53 Posts
|
attach one or two <br> after each bullet in the code
|
|
--- Work Smart... Not Hard ---
| |
| | |
| | #3 |
| Mom On A Mission! War Room Member Join Date: Feb 2007 Location: Truro, Nova Scotia, Canada
Posts: 1,082
Thanks: 57
Thanked 64 Times in 46 Posts
|
Try just adding a new line code after each bullet: Code: <br /> |
| | |
| | |
| | #5 |
| Senior Warrior Member War Room Member Join Date: Sep 2004 Location: USA
Posts: 2,573
Thanks: 132
Thanked 82 Times in 53 Posts
|
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. |
| | |
| | #6 |
| Mom On A Mission! War Room Member Join Date: Feb 2007 Location: Truro, Nova Scotia, Canada
Posts: 1,082
Thanks: 57
Thanked 64 Times in 46 Posts
|
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... |
| | |
| | |
| | #7 |
| Advanced Warrior Join Date: Oct 2007 Location: Waterloo, Ontario, Canada.
Posts: 780
Thanks: 6
Thanked 112 Times in 53 Posts
|
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 ---
| |
| | |
| | #8 |
| Battle Hardened Warrior Join Date: Apr 2009 Location: USA/UK
Posts: 690
Thanks: 44
Thanked 166 Times in 89 Posts
|
css is the way to go. google for it. |
| | |
| | #9 |
| Senior Warrior Member War Room Member Join Date: Sep 2004 Location: USA
Posts: 2,573
Thanks: 132
Thanked 82 Times in 53 Posts
|
Thanks, got it licked. ![]() Thanks to all of you Warriors! |
| | |
| | #10 |
| HyperActive Warrior War Room Member Join Date: Oct 2007 Location: Mission, TX, USA.
Posts: 333
Thanks: 224
Thanked 62 Times in 36 Posts
|
What was your final solution Dayne?
|
|
~Dave
| |
| | |
| | #11 |
| Senior Warrior Member War Room Member Join Date: Mar 2007 Location: London, England
Posts: 3,771
Thanks: 1,006
Thanked 525 Times in 340 Posts
| 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 |
| | |
| | |
| | #12 |
| We Do Service Right War Room Member Join Date: Dec 2008 Location: Philadelphia, PA
Posts: 164
Thanks: 2
Thanked 13 Times in 12 Posts
|
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 | |
| | |
| | #13 |
| Senior Warrior Member War Room Member Join Date: Sep 2004 Location: USA
Posts: 2,573
Thanks: 132
Thanked 82 Times in 53 Posts
|
Yep, I used some simple CSS coding. Worked like a charm. ![]() Thanks everyone! |
| | |
| | #14 | |
| Mom On A Mission! War Room Member Join Date: Feb 2007 Location: Truro, Nova Scotia, Canada
Posts: 1,082
Thanks: 57
Thanked 64 Times in 46 Posts
| Quote:
That's a more efficient method above.Karen | |
| | ||
| | |
| | #15 |
| PromoteMyArticles.com War Room Member Join Date: Jun 2008 Location: Tampa, Florida
Posts: 2,469
Blog Entries: 13 Thanks: 610
Thanked 697 Times in 306 Posts
|
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. | |
| | |
| | #16 |
| "Working On A Dream" War Room Member Join Date: Dec 2002 Location: Alderaan
Posts: 419
Thanks: 13
Thanked 2 Times in 2 Posts
|
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. | |
| | |
| | #17 |
| HyperActive Warrior War Room Member Join Date: Oct 2007 Location: Mission, TX, USA.
Posts: 333
Thanks: 224
Thanked 62 Times in 36 Posts
| |
|
~Dave
| |
| | |
![]() |
|
| Tags |
| bullets, html, increase, space |
| Thread Tools | |
| |
![]() |