| View previous topic :: View next topic |
| Author |
Message |
forten
Joined: 06 Feb 2008
Posts: 3
|
| Posted: Wed Feb 06, 2008 6:10 am Uncenter Bullets |
|
|
HELP! my bulleted text is centered and I can not figure out how to align it left. This is the code I have:
<p align="left">
<font face="Arial, Helvetica, sans-serif" size="5">
<span style="font-weight: 700"><b> Staggering Statistics<br>
<font face="Arial, Helvetica, sans-serif" size="4">
<font face="Arial, Helvetica, sans-serif" size="3">
<span style="font-weight: 400"><p align="left">
<ul>
<li>Teen driving statistics show that over 1 MILLION teens are involved in
auto crashes every year in the United States. </li>
<li>9 out of 10 teen deaths are caused by car accidents. </li>
<li> One of the leading factors is simply lack of driving experience. </li>
<li> 15 and 16-year-olds have higher crash rates than drivers of any other age. </li></ul>
The "Staggering Statistics" text is aligned left but the bullets are centered. (to see go to www.rookiedriver.net - about 1/2 way down the page)
Can someone tell me what I'm doing wrong??
THANKS! |
|
|
wilnotdie
Joined: 05 Feb 2008
Posts: 6
|
| Posted: Wed Feb 06, 2008 7:29 am |
|
|
try this
[code]<p align="left">
<font face="Arial, Helvetica, sans-serif" size="5">
<span style="font-weight: 700"><b> Staggering Statistics<br>
<font face="Arial, Helvetica, sans-serif" size="4">
<font face="Arial, Helvetica, sans-serif" size="3">
<span style="font-weight: 400"><p align="left">
<ul> <li>
<p align="left">
Teen driving statistics show that over 1 MILLION teens are involved in
auto crashes every year in the United States. </li><li>
<p align="left">9 out of 10 teen deaths are caused by car accidents. </li><li>
<p align="left"> One of the leading factors is simply lack of driving experience. </li><li>
<p align="left"> 15 and 16-year-olds have higher crash rates than drivers of any other age. </li></ul> |
|
|
forten
Joined: 06 Feb 2008
Posts: 3
|
| Posted: Wed Feb 06, 2008 8:08 am still doesn't work |
|
|
thanks for the help - but the [code] shows up on the page, centered, right before the text "staggering"?
and then the bullets are still centered? |
|
|
wilnotdie
Joined: 05 Feb 2008
Posts: 6
|
| Posted: Wed Feb 06, 2008 8:40 am |
|
|
| oops sorry. You can delete the brackets and code inside it. |
|
|
wilnotdie
Joined: 05 Feb 2008
Posts: 6
|
| Posted: Wed Feb 06, 2008 8:51 am |
|
|
| Are you closing </p> the rest of your center tags? Im not sure if this needs to be done, but might mess something up. |
|
|
|
Corey Bryant
Joined: 15 May 2004
Posts: 8428
Location: Castle Pines North, CO USA
|
| Posted: Wed Feb 06, 2008 10:49 am |
|
|
You might try Code: <ul style="text-align:left">
<li>Teen driving statistics show that over 1 MILLION teens are involved in auto
crashes every year in the United States. </li>
<li>9 out of 10 teen deaths are caused by car accidents. </li>
<li>One of the leading factors is simply lack of driving experience. </li>
<li>15 and 16-year-olds have higher crash rates than drivers of any other age.</li>
</ul> If that is not working, see if you are using styles for the <li> element.
_________________
Corey
Residential Office Solutions | Mile High Merchant Accounts | Expression Web Blog |
|
|
forten
Joined: 06 Feb 2008
Posts: 3
|
| Posted: Wed Feb 06, 2008 2:12 pm YOU ROCK! |
|
|
| Thanks - Corey your last suggestion worked! :D |
|
|
| |
|
|
|