CSS List ID Issue

Code:
#mainbody ul {
list-style-image:url(images/bullet.gif);
list-style-position:inside;
margin:0 auto;
}

Im afraid this does not make any difference at all:(

Im did notice my mainbody UL's on the xhtml files were not ID'd correctly, they were using <ul> list </ul>

I tried to ID them with the mainbody ul in my css, but again it doesnt seem to co-oporating, its like the id class in my css does not even exist.
 
Sorry, that was a mistake when I the code was copied onto here, its not like that in my css. :( wish it was,lol

Basically like the comments above, if i comment out my mainbody ul/li code and just have the twitter ones, it works fine, so its something I need to do with the mainbody ul and li items.
 
Sweet, i found the issue :)


Code:
#twitter_update_list ul {

#twitter_update_list li {

Should have been


Code:
#twitterfeed2 ul {

#twitterfeed2 li {

:)
 
Im afraid this does not make any difference at all:(

Im did notice my mainbody UL's on the xhtml files were not ID'd correctly, they were using <ul> list </ul>

I tried to ID them with the mainbody ul in my css, but again it doesnt seem to co-oporating, its like the id class in my css does not even exist.
I didn't mean add it, I meant change it. :)

Install firebug.. makes CSS tweaks much, much easier.
 
I didnt add it :) I changed it, the only line that was missing was list-style-position:inside;

I have firebug :) just dont use it to the fullest I guess
 
Back
Top Bottom