It depending on the theme you are using.
If you have google chrome, right click on the numbers and select ‘inspect element’, you will see the css properties that style the numbers.. something like this:
div.item-list-tabs ul li a span {
background: #1FB3DD;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
color: white;
display: inline;
font-size: 90%;
margin-left: 2px;
padding: 1px 6px;
}
Chrome will tell you what file the rule is in and the line number.
Hi Thanks for getting back to me! I am in google chrome and inspecting the element………..
OK through google chrome examination of elements, I was able to find the default .css on my FTP
Let’s see what I can do ……………
OK found it opening the css file:
div.item-list-tabs ul li a span {
background: #1fb3dd;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
color: #fff;
display: inline;
font-size: 90%;
margin-left: 2px;
padding: 1px 6px;
How can I make the background “background: #1fb3dd;” a different color. When I unselected it on google chrome element inspection, I could finally see what the tab numbers were, is there a code for
transparent?
did it!!!!!!!!!!!!!!!! thank you!!!!!!!!!!!!!!! changed it to the following color: #EAEAEA
Thanks for pointing me in the right direction! Saved me hours of work!