How to change the left menu rollover color

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
the_alchemist
Posts: 21
Joined: Tue 26. Jul 2005, 13:59

How to change the left menu rollover color

Post by the_alchemist »

Hi,
I have made the left menu with {left_table_column} this works fine but i want to change the rollover color i guess it is this code:

Code: Select all

<tr bgcolor="#4A5966">
Image
ive searched this forum but i couldnt find anything and i dont know which php file i have to edit.
it isnt in the css file because its declared as bgcolor of the tr
if you know how to solve this problem please reply

thanks in advance,
jscholtysik

Post by jscholtysik »

Hi the_alchemist,


welcome to this PHPWCMS community!!

look into /config/phpwcms/conf.default_template.inc.php (>PHPWCMS 1.1.5) :

There are the following lines:

Code: Select all

$template_default["nav_table_struct"]["row_norm_bgcolor"]		= "CFE7F7"; // #D9DEE3
$template_default["nav_table_struct"]["row_norm_class"]			= "";
//	
$template_default["nav_table_struct"]["row_over_bgcolor"]		= "#D9DEE3"; //#AAB7C1
$template_default["nav_table_struct"]["row_active_bgcolor"]		= "#FFFFFF";
$template_default["nav_table_struct"]["row_active_class"]		= "";
Here you can define your colors for the NAV_TABLE_COLUMN... :-)

Have fun.


Joachim
the_alchemist
Posts: 21
Joined: Tue 26. Jul 2005, 13:59

Post by the_alchemist »

Yes its working thank you very much :wink:
Miss_DJ
Posts: 4
Joined: Mon 19. Dec 2005, 22:22
Location: Washington State, USA
Contact:

Post by Miss_DJ »

I have the same problem. (Want to change Nav Table colors.) How do I access the config/phpwcms/conf.default_template.inc.php file?

http://www.msuuf.org
Stim
Posts: 587
Joined: Mon 6. Jun 2005, 13:13

Post by Stim »

Hi
It is path to file conf.default_template.inc.php. You can find this file to edit in folder phpwcms. config/phpwcms
Post Reply