Page 1 of 1

custom.css or user.css?

Posted: 20 Sep 2023, 19:16
by Spiraliz
Hi.
I'm trying to modify the size of the guestbook form and make the text a bit smaller. I have read in the forum that I can add a user.css or custom.css.
The problem is i dont know where in the filesystem to place the css files... I'm using Joomla 4 and Phoca Guestbook 4.0.4.

Any sugestions? Tnx in advance.

Re: custom.css or user.css?

Posted: 20 Sep 2023, 19:20
by Benno
Hi,
this depends on the used frontend template.
See: https://www.phoca.cz/documentation/86-j ... g-user-css

Kind regards,
Benno

Re: custom.css or user.css?

Posted: 20 Sep 2023, 20:15
by Spiraliz
Tnx for reply.
So, if i put this text in my joomla frontend user.css i should see any results (Found this in another thread):

#jform_guestbook_title, #jform_guestbook_username, #jform_guestbook_email {
width: 25%;
}

Am i missing something in the css tag?

Re: custom.css or user.css?

Posted: 20 Sep 2023, 23:09
by christine
Spiraliz wrote: 20 Sep 2023, 19:16 I'm trying to modify the size of the guestbook form and make the text a bit smaller.
If you mean the content box only, try this:

Code: Select all

textarea#jform_guestbook_content.inputbox {
width: 500px !important;  
}
Kind regards
Christine
Hi Benno :)