Reputation: 2678
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
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