{NAV_TABLE_COLUMN} CSS Problem

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
submike
Posts: 50
Joined: Wed 25. Aug 2004, 17:36
Location: Chicago
Contact:

{NAV_TABLE_COLUMN} CSS Problem

Post 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
User avatar
Oliver Georgi
Site Admin
Posts: 9892
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

no, does not use default. Check that you have set corresponding class names in conf.template_default.inc.php too.

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
submike
Posts: 50
Joined: Wed 25. Aug 2004, 17:36
Location: Chicago
Contact:

Post 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
Post Reply