Page 1 of 1

{NAV_TABLE_COLUMN} CSS Problem

Posted: Sat 27. Aug 2005, 21:12
by submike
The CSS for the text (a href) portion of the NAV_TABLE_COLUMN is not working? It appears it's using the default CSS for a and a.hover.

Any ideas?

Thanks in advance,
Mike

Posted: Sun 28. Aug 2005, 08:37
by Oliver Georgi
no, does not use default. Check that you have set corresponding class names in conf.template_default.inc.php too.

Oliver

Posted: Mon 29. Aug 2005, 17:48
by submike
Thanks for the advice Oliver. I found out the problem.

I assumed include/inc_css/article.css handled the .nav_table class for the menu. I copied the following code from that css and placed it in the default css, and it works now.

Code: Select all

.nav_table {
	font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 10px;
	color: #4A5966;
	font-weight: normal;
}

.nav_table a, .nav_table a:link, .nav_table a:active, .nav_table a:visited, .nav_table a:hover {
	font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 10px;
	color: #FFFFFF;
	font-weight: normal;
	text-decoration: none;
}

.nav_table_active {
	font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 10px;
	color: #4A5966;
	font-weight: bold;
}
Thanks,
Mike