Quote:
Originally Posted by merk_aus
I am having an issue that I hope someone will be able to assist me with. I am using this on my website http://nrl-central.com to have the latest ladders on the sidebar. The issue is no matter what I attempt to put in the styling section the words for the tabs inherit their colors from the overall board style.
I was wondering if this could be changed. Please visit the site look on the right hand side where it says ladders and you will see what I mean. Is there anyway to get it so the words show up as ffffff or something so that they can stand out?
|
/clientscript/yui/tabview/assets/tabview-skin.css
/* selected tab background color and text color */
.yui-navset .yui-nav .selected a,
.yui-navset .yui-nav a:focus,
.yui-navset .yui-nav a:hover {background:#053764 url(image.png) repeat-x left; color:#ffffff;}
change background:#053764 to the color you want.. 053746 is that darkish blue. also, set an !important on the color element (fro the text).. ie color: #ffffff !important; as its being over rode by #sidebar_container a
This below change (just adding !important) makes it look much better
/* selected tab background color and text color */
.yui-navset .yui-nav .selected a,
.yui-navset .yui-nav a:focus,
.yui-navset .yui-nav a:hover {background:#053764 url(image.png) repeat-x left; color:#ffffff !important;}
This file contains ALL the style settings, so to replace that blue, find other instances of it in the file and replace those as well.