Jul 11, 2003 #1 etu1972 Programmer Jul 29, 2002 69 US Is there a way to force the bullets in a list to be on the left margin versus indented? Thanks, AMc Should I stay or should I go? Thanks & Goodbye, Joe.
Is there a way to force the bullets in a list to be on the left margin versus indented? Thanks, AMc Should I stay or should I go? Thanks & Goodbye, Joe.
Jul 11, 2003 1 #2 Cheech Technical User Nov 6, 2000 2,933 EU Just create a bullet image and use that instead of a list Cheech [Peace][Pipe] If you don't stand up for something, you'll fall down. Toke it Easy. Howard Marks. Upvote 0 Downvote
Just create a bullet image and use that instead of a list Cheech [Peace][Pipe] If you don't stand up for something, you'll fall down. Toke it Easy. Howard Marks.
Jul 11, 2003 Thread starter #3 etu1972 Programmer Jul 29, 2002 69 US I was afraid that was the only answer. Thanks Cheech. Should I stay or should I go? Thanks & Goodbye, Joe. Upvote 0 Downvote
I was afraid that was the only answer. Thanks Cheech. Should I stay or should I go? Thanks & Goodbye, Joe.
Jul 11, 2003 1 #4 grtfercho Programmer Apr 11, 2003 424 US Never..... You can use CSS like this... <html> <body> <style> .noindent{ list-style-type:square; margin:2px 2px 2px 20px; } </style> Regular text <ul> <li>First line</li> <li>Second line</li> <li>Third line</li> <li>Fourth line</li> </ul> <br> Little or no indent <ul class="noindent"> <li>First line</li> <li>Second line</li> <li>Third line</li> <li>Fourth line</li> </ul> <br> Another Example comes here <ul style="margin:10px 10px 10px 500px;"> <li>First line</li> <li>Second line</li> <li>Third line</li> <li>Fourth line</li> </ul> </body> </html> grtfercho çB^]\.. "Imagination is more important than Knowledge" A. Einstein Upvote 0 Downvote
Never..... You can use CSS like this... <html> <body> <style> .noindent{ list-style-type:square; margin:2px 2px 2px 20px; } </style> Regular text <ul> <li>First line</li> <li>Second line</li> <li>Third line</li> <li>Fourth line</li> </ul> <br> Little or no indent <ul class="noindent"> <li>First line</li> <li>Second line</li> <li>Third line</li> <li>Fourth line</li> </ul> <br> Another Example comes here <ul style="margin:10px 10px 10px 500px;"> <li>First line</li> <li>Second line</li> <li>Third line</li> <li>Fourth line</li> </ul> </body> </html> grtfercho çB^]\.. "Imagination is more important than Knowledge" A. Einstein
Jul 14, 2003 Thread starter #5 etu1972 Programmer Jul 29, 2002 69 US Thanks grtfercho. That's a great flexible solution. Should I stay or should I go? Thanks & Goodbye, Joe. Upvote 0 Downvote
Thanks grtfercho. That's a great flexible solution. Should I stay or should I go? Thanks & Goodbye, Joe.