Page 1 of 1

Where can I change CSS for POST MESSAGE-line

Posted: 25 Jan 2009, 23:09
by woodyf4u
Is the Post Message-line controlled by a CSS-file?
I like to change the size and color of this line.

Thanks for any help.

Re: Where can I change CSS for POST MESSAGE-line

Posted: 26 Jan 2009, 15:34
by Jan
Hi, you can change it in CSS (every tags can be controlled by css except tags which have style attribute because e.g. they are styled by parameters)
but post message style you can change in CSS

see phoca guestbook css:

id phocaguestbook jpane-toggler-down
classes panel, jpane-toggler title ....

Jan

Re: Where can I change CSS for POST MESSAGE-line

Posted: 26 Jan 2009, 22:14
by woodyf4u
Hi Jan,

My CSS knowledge is not very good.
Is it possible for you to post a replay with a little change in it.
Ik like to see no underline, font-family is: font-family: "Times New Roman", Times, serif and the size is about 14px.

I hope you will help me with it.
And am I wright, this file is in: front/assets/phocaguestbook.css?

Re: Where can I change CSS for POST MESSAGE-line

Posted: 29 Jan 2009, 14:40
by Jan
Paste the following code into the end of the css file
components/com_phocaguestbook/assets/phocaguestbook.css

Code: Select all

#phocaguestbook  .jpane-toggler span ,
#phocaguestbook  .jpane-toggler-down span {
font-family: "Times New Roman", Times, serif;
font-size: 14px;
}

Re: Where can I change CSS for POST MESSAGE-line

Posted: 29 Jan 2009, 21:56
by woodyf4u
Jan,

Thanks a lot. This is what I was looking for.