tags:

views:

62

answers:

1

I removed

background: url(none);

in my stylesheet because of load performance http://stackoverflow.com/questions/2577422/why-firebug-pretends-that-my-stylesheet-is-calling-my-xmlrpc

The problem is that it now causes some glitch on css list.

Any idea how to fix this ?

Thanks.

Update: picture below

Tried to put background: none as suggested but didn't solve the problem/

ul.sidebar_list li ul li ul {
    margin: 0px;
    padding: 0px!important;
    float: left;
    width: 100%;
    list-style-type: none;
    background: none;
}
+3  A: 

Referring to your other question I assume you mean the background image on your list items within the sidebar. You have to explicitly declare that you don't want a background image on the inner list items inside the list of widgets in your sidebar.

See line 370 of your styles.css and add background-image:none; as shown:

ul.sidebar_list li ul li {
    background-image:none;
}

Good luck with your blog!

codescape