Faisal Ashfaq
Faisal Ashfaq

Reputation: 2678

Custom CSS won't work in WP?

I am trying to do a slight change on a WP theme, I can't find the exact place to put in CSS and make it functional as I have test the same CSS code on FireBug's CSS Tab and it worked fine.

I have tried putting in style.css and also in Custom CSS which the theme offers but no effect. Thoughts?

This is my CSS and I am sure it is correct:

.top-links ul li {
    position: relative;
    z-index: 1;
}

Upvotes: 0

Views: 74

Answers (2)

wedi
wedi

Reputation: 1422

Maybe you just need to clear your browser's cache?

Upvotes: 0

Nith
Nith

Reputation: 742

Please use fire bug / source view to find the css path that attached with your theme. In common wordpress layouts that is loaded under your theme folder and may be the file name is styles.css. If that is not working properly please use the css like this.

.top-links ul li {
position: relative!important;
z-index: 1!important;

}

Upvotes: 2

Related Questions