Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-13-2008, 03:30 AM   PM User | #1
ds67
New Coder

 
Join Date: Apr 2007
Posts: 72
Thanks: 4
Thanked 0 Times in 0 Posts
ds67 can only hope to improve
list problem in ie

Hi:

I looked and couldn't find the solution to my problem. I've created a bullet list in CSS. Looks great in FF but the alignment in IE is off. Is there a way I can fix this? You can see the problem at the following page:

http://netsitemaker.com/nsmjan08/design.html

Also, using CSS, is there a way I can change the font color of a few words within a paragraph without using <font color="123456"></font>???

Thanks so much.
ds67 is offline   Reply With Quote
Old 01-13-2008, 03:44 AM   PM User | #2
Majoracle
Regular Coder

 
Join Date: Nov 2006
Posts: 246
Thanks: 13
Thanked 26 Times in 24 Posts
Majoracle is an unknown quantity at this point
IE uses margin to create the space on the left of a list, where Firefox uses padding. Because you have the margin on the left set to 0, if pushes all the way to the left in IE. You SHOULD be able to fix it by just removing the margin all together:

Code:
.bulletlist1 {
        color:#000000;
        margin:20px 0px 20px 0px;
        text-align:left; 
        font-size:10pt;
}
and yeah, <span style="color:#123456">text</span>.
Majoracle is offline   Reply With Quote
Users who have thanked Majoracle for this post:
kaitimae (01-14-2008)
Old 01-14-2008, 01:46 AM   PM User | #3
ds67
New Coder

 
Join Date: Apr 2007
Posts: 72
Thanks: 4
Thanked 0 Times in 0 Posts
ds67 can only hope to improve
Thanks so much Majoracle. Worked just the way I wanted to. I really appreciate it.
ds67 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT +1. The time now is 12:09 PM.


Advertisement
Log in to turn off these ads.