Re: [WSG] CSS help with bullet removal in IE view

2006-01-07 Thread Artemis

 Original Message 
From: Joshua Street <[EMAIL PROTECTED]>
To: wsg@webstandardsgroup.org
Subject: Re:[WSG] CSS help with bullet removal in IE view
Date: 1/7/2006 17:58


list-style:none; on the UL should work well... failing that, try
playing with padding: on the list.

 

Thank you, Josh. I did try the list-style: none; (sorry, I failed to 
mention that before). I even got desperate and tried list-style-type: none;
and that didn't seem to help either lol. But, I did as you suggested and 
played with the padding. It didn't remove the bullets, but it scooted 
the text over far enough to hide them without messing up the look hehe. 
I'm happy now :)


Thanks ever so much for your help and suggestion!
Artemis
**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
**



Re: [WSG] CSS help with bullet removal in IE view

2006-01-07 Thread Joshua Street
list-style:none; on the UL should work well... failing that, try
playing with padding: on the list.

On 1/8/06, Artemis <[EMAIL PROTECTED]> wrote:
> My partner and I have a tagboard on our site and it looks greate in FF,
> but when you view in IE there are round bullets. Can someone help me get
> rid of the bullets?
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**



[WSG] CSS help with bullet removal in IE view

2006-01-07 Thread Artemis
My partner and I have a tagboard on our site and it looks greate in FF, 
but when you view in IE there are round bullets. Can someone help me get 
rid of the bullets? My partner did email the creator of the tagboard, 
but never heard back.


Unfortunately, I cannot offer the link because it sits behind our paid 
members area with a passgate. I can show you the CSS here in the email 
if that is ok.


Any help for this newbie would be greatly appreciated!

This CSS comes with the tagboard, so it's not my code:

#chatoutput {
/* Height of the shoutbox*/
height: 250px;
/*Uncomment width below*/
/*width: 170px;*/
/* Horizontal Scrollbar Killer */
padding: 6px 8px;
/* Borders */
border: 1px solid #efc1c3;
border-width: 1px;
font: 10px helvetica, arial, sans-serif;
color: #9a9a9a;
background: #FF;
overflow: auto;
margin-top: 10px;
}
#chatoutput span {
font-size: 1.1em;
color: #efc1c3;
}
#chatForm label, #shoutboxAdmin {
display: block;
margin: 4px 0;
}
#chatoutput a {
font-style: normal;
font-weight: bold;
color: #efc1c3}
/* User names with links */
#chatoutput li span a {
font-weight: normal;
display: inline !important;
border-bottom: 1px solid #efc1c3}
#chatForm input, #chatForm textarea {
width: 120px;
display: block;
margin: 0 auto;
}
#chatForm textarea {
width: 150px;
}
#chatForm input#submitchat {
width: 70px;
margin: 10px auto;
border: 1px solid;
padding: 2px;
}
#chatoutput ul#outputList {
padding: 0;
position: static;
margin: 0;
}
#chatoutput ul#outputList li {
padding: 4px;
margin: 0;
color: #9a9a9a;
background: none;
font-size: 1em;
list-style: none;
}
/* No bullets from Kubrick et al. */
#chatoutput ul#outputList li:before {
content: '';
}
ul#outputList li:first-line {
line-height: 16px;
}
#lastMessage {
padding-bottom: 2px;
text-align: center;
border-bottom: 1px solid #efc1c3;
}
em#responseTime {
font-style: normal;
display: block;
}
#chatoutput .wp-smiley {
vertical-align: middle;
}

Thanks,
Artemis
**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
**