Page 1 of 1

Phoca GuestBook

Posted: Wed Oct 21, 2009 3:32 am
by racefanatic
Hi all I have a question,,my site's template has blacks grays and such on it,I have installed Phoca GB and when you go to post a comment you can see everything fine, but when you want to see what has been posted prior it's all black,now I know it will take some editing somewhere but I dont know how to do it,,any help would be great, if someone can point me in the right direction I'll try and take care of the rest..not very good with CSS of HTML so please spell it out for me,,
see here to what i mean
http://funinthemud.net/index.php?option ... &Itemid=27

Re: Phoca GuestBook

Posted: Thu Oct 22, 2009 5:12 am
by racefanatic
Ok everyone I solved this myself I did a lot of research and kept coming up with nothing,I started look looking around and did this,not sure how I did this but this is what i did went to

components/com_phocaguestbook/views/phocaguestbook/view.html.php

found this code and tried a few changes till it worked this is what I changed

Code: Select all

if ($params->get( 'font_color' ) != '')			{$css['fontcolor'] = $params->get( 'font_color' );}
		else 											{$css['fontcolor'] = '#000000';}
where font color was all "0's" I changed to this and it all works fine on my site now

Code: Select all

if ($params->get( 'font_color' ) != '')			{$css['fontcolor'] = $params->get( 'font_color' );}
		else 											{$css['fontcolor'] = '#FFFFFF';}
Not bad I think for a beginner :laugh:

Re: Phoca GuestBook

Posted: Sat Oct 31, 2009 10:50 pm
by H13
Hi, you can change it in Parameters - in Parameters Component in menu link to guestbook - you need not to edit the php source code.

See:
http://www.phoca.cz/documents/16-joomla ... -in-joomla

Jan