bullets and a centered list

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a text list that I want to be displayed in the center of the page. I have left justified the list and tabbed the list over to where I want it. When I add bullets they are way to the left side, not next to my words. Is there any way to get them next to my text?
 
Try inserting a table from the insert menu. You can always add, merge or
delete table cells by right clicking with the table.

In the table properties change the horizontal alignment to be centered in
the page. Also unclick the table 100%width tab and make sure your borders
are set to "0". This will allow the length of the text to determine the
width of the table. Now with the table centered you can easily insert left
justifed text with in the cells. In finishing add bullets before the text
lines within the table cells.

Does this make since? if not insert this html code into a new page as an
example

<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>

<body>

<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse:
collapse" bordercolor="#111111" id="AutoNumber1" width="162">
<tr>
<td width="4">&nbsp;</td>
<td rowspan="8" width="149">
<ul style="text-align: left">
<li>your text here</li>
<li>your text here</li>
<li>your text here</li>
<li>your text here</li>
<li>your text here</li>
<li>your text here<br>
&nbsp;</li>
</ul>
</td>
<td width="9">&nbsp;</td>
</tr>
<tr>
<td width="4">&nbsp;</td>
<td width="9">&nbsp;</td>
</tr>
<tr>
<td width="4">&nbsp;</td>
<td width="9">&nbsp;</td>
</tr>
<tr>
<td width="4">&nbsp;</td>
<td width="9">&nbsp;</td>
</tr>
<tr>
<td width="4">&nbsp;</td>
<td width="9">&nbsp;</td>
</tr>
<tr>
<td width="4">&nbsp;</td>
<td width="9">&nbsp;</td>
</tr>
<tr>
<td width="4">&nbsp;</td>
<td width="9">&nbsp;</td>
</tr>
<tr>
<td width="4">&nbsp;</td>
<td width="9">&nbsp;</td>
</tr>
</table>
</center>
</div>

</body>

</html>

That's one way of doing it good luck!

Mike


heathrow said:
I have a text list that I want to be displayed in the center of the page.
I have left justified the list and tabbed the list over to where I want it.
When I add bullets they are way to the left side, not next to my words. Is
there any way to get them next to my text?
 
You can get info and examples here for lists:
http://css.maxdesign.com.au/listamatic/index.htm

Wally

heathrow said:
I have a text list that I want to be displayed in the center of the page.
I have left justified the list and tabbed the list over to where I want it.
When I add bullets they are way to the left side, not next to my words. Is
there any way to get them next to my text?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Bullet point format 6
Justify paragraph but center last line 2
Bullet indentation 2
bullet points 5
outline numbering change - what did I do? 1
Bullets 6
centering bullet points 4
bullets are too close to text 1

Back
Top