Page 1 of 1

Hi,i wan

Posted: 06 May 2008, 09:25
by funga
Hi,

i want to change to color in the background of the title. Searched on the forum, but didn't find any good answer.

http://www.othila.org/index.php?option= ... ok&id=1&It emid=78

I mean the light color blue behind the username and title.

Thank you

You can change the f

Posted: 06 May 2008, 10:31
by Jan
You can change the font color only for all fonts and for the date font... If you want to change specific tag, you must do it in CSS file or in HTML:

components\com_phocaguestbook\assets\phocaguestbook.css
components\com_phocaguestbook\views\phocaguestbook\tmpl\default.php

components\c

Posted: 06 May 2008, 14:13
by funga
components\com_phocaguestbook\assets\phocaguestbook.css
components\com_phocaguestbook\views\phocaguestbook\tmpl\default.php

The strange thing is that those files do not exist ...

greetings

funga

Posted: 06 May 2008, 14:42
by Jan
Phoca Guestbook will not work without these files

I've found them

Posted: 08 May 2008, 19:05
by funga
I've found them now...
I was looking in joomla\administrator\components *blush*

but I can't still find it...

" $msgpg .= '<div style="border:1px solid '.$this->css['bordercolor'].';color:'.$this->css['fontcolor'].';margin:10px 0px;">';"

I suppose it says here to get the color from a css file, but which file?

greetings
funga

Or?

Posted: 08 May 2008, 19:07
by funga
Or?

<tr>
<td width="5"><b><?php echo JText::_('Title'); ?>: </b></td>
<td colspan="4"><input type="text" name="title" id="title" value="<?php echo $thi
s->formdata->title ?>" size="32" maxlength="200" style="border:1px solid #cccccc" /><
/td>
</tr>


can I add a background color in those lines?

everywhere you want

Posted: 08 May 2008, 20:55
by Jan
everywhere you want but you must know CSS

<tag style="background:red">...</tag>

FROM
$msgpg .= '<div style="border:1px solid '.$this->css['bordercolor'].';color:'.$this->css['fontcolor'].';margin:10px 0px;">';"
TO (e.g.)
$msgpg .= '<div style="border:1px solid '.$this->css['bordercolor'].';color:red;margin:10px 0px;">';"