Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

pelsar

macrumors regular
Original poster
Apr 29, 2008
180
0
israel
http://www.lucidlogix.com/newsclips.html

the list on top is an html vertical text scroller...and its has these tiny bullets on the left site that i cannot find...i believe they are being put there from the general sites CSS, but when i put "none" in the divs surrounding this scroller i get nada..they're still there.
 

Yamcha

macrumors 68000
Mar 6, 2008
1,825
158
Try this on the ul or li tag
PHP:
{list-style-type:none;}
and it should remove the bullets.. an example would be :

PHP:
ul {list-style-type:none;}
li {list-style-type:none;}

Hope it works for you..
 

pelsar

macrumors regular
Original poster
Apr 29, 2008
180
0
israel
Try this on the ul or li tag
PHP:
{list-style-type:none;}
and it should remove the bullets.. an example would be :

PHP:
ul {list-style-type:none;}
li {list-style-type:none;}

Hope it works for you..

nope...nothing there..i've always put them in the style sheets...where would i put them directly in the html code:

this is the surrounding div: <div id="NewsTicker">
 

emiljan

macrumors 6502
Jan 25, 2010
330
0
Michigan
under your <title></title> tags open up a new stylesheet tag and place them like this.

Code:
<style type="text/css">
ul {list-style-type:none;} 
li {list-style-type:none;}  
</style>
 

pelsar

macrumors regular
Original poster
Apr 29, 2008
180
0
israel
under your <title></title> tags open up a new stylesheet tag and place them like this.

Code:
<style type="text/css">
ul {list-style-type:none;} 
li {list-style-type:none;}  
</style>

this didnt work...did i put it in right?



<title>about lucidlogix</title><link href="Lucid.css" rel="stylesheet" type="text/css" /><style type="text/css">


ul {list-style-type:none;}
li {list-style-type:none;}
</style>


its definitly part of the style sheet (lucid.css) one i remove that, the bullets are gone
 

Darth.Titan

macrumors 68030
Oct 31, 2007
2,905
753
Austin, TX
You're probably suffering from an inheritance issue. Try this:
In the stylesheet, change the
PHP:
#TickerVertical li {
to
PHP:
#TickerVertical ul li {
and see if that helps.

BTW, you can remove the list-style-type from the div style. That won't do anything as list-style-type is not a valid attribute for the div tag.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.