Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
The FireBoard forum component development is still going on. In order to get better, FireBoard will be moved from the Best of Joomla website.
During this transition period, the forum in Best of Joomla will be closed to new posts.
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard
Re:message box with use joomla style enabled (1 viewing) (1) Guest
TOPIC: Re:message box with use joomla style enabled
#48735
Re:message box with use joomla style enabled 9 Months ago  
the code do i post in the template css file or in the fireboard css file? or in the? please explain. and at what part in the middle at the begining or the end to i paste the code?
sorry for askingb this again but i didnt really understand the answers plural.
thanks
kam
www.globalfreq.net
gumnation (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/04/10 22:50 By gumnation.
 
 
#48744
Re:message box with use joomla style enabled 9 Months ago  
oniell (User)
Junior Boarder
Posts: 21
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/04/11 03:05 By oniell.
 
 
#50433
Re:message box with use joomla style enabled 8 Months ago  
I'm having the exact same problem, and none of the solutions here worked. My text box is just too tiny. This is starting to be very annoying, I didn't realize Fireboard had some many flaws. I never had this issues with phpBB.
Xaman (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#50435
Re:message box with use joomla style enabled 8 Months ago  
The workaround didn't work for me either; however, I was able to edit a template to match my site. I would not call them "flaws" as much as it is hard to make something as complex as a forum system integrate perfectly into Joomla! Yes, PHPBB is a better all around forum, but it is alot harder to bring Joomla user info (user and password) together with PHPBB. It is simply a matter of how much work you want to do or want your users to do. You COULD set PHPBB wide open but then everyone would be guests. If you want some help customizing a template I could help you(I'm not gonna do it for you, that would defeat the purpose).

My e-mail is This e-mail address is being protected from spam bots, you need JavaScript enabled to view it drop me note if you wish.
oniell (User)
Junior Boarder
Posts: 21
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#50453
Re:message box with use joomla style enabled 8 Months ago  
I fixed the problem. Used firebug to see the actual name of the class, and it was "txtarea", not "fb_txtarea", so just changed that part and it works now. Hope this info is usefull to other people.
Xaman (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#50458
Re:message box with use joomla style enabled 8 Months ago  
Which CSS file is it in? I thought I might as well ask before I went in and bothered finding it myself.
oniell (User)
Junior Boarder
Posts: 21
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#58574
Re:message box with use joomla style enabled 3 Months, 3 Weeks ago  
Yeah, it was the template.css and when I removed the prefix fb_ and just had .txtarea it fixed... (sigh...breath of relief)
Here is exactly what worked for me, I pasted it at the bottom of the template.css file in my templates folder of the template that was being used (default)

[code:1]

/* -------------------------------- fireboard stuff ------------------------------ */

table#fb_postmessage .fb_txtarea
{
width: 95%;
overflow: auto;
height: 300px;
border: 1px solid #ccc;
}

.txtarea
{
height: 300px;
width: 95%;
}[/code:1]
WiZeGuY (User)
Fresh Boarder
Posts: 6
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#60235
Re:message box with use joomla style enabled 2 Months, 4 Weeks ago  
I'm using JAPurity... this is what worked for me:
Code:

textarea#message.txtarea
{
width: 95%;
overflow: auto;
height: 300px;
border: 1px solid #ccc;
}



I hope it helps someone.
Rapunzl (User)
Junior Boarder
Posts: 22
graphgraph
User Offline Click here to see the profile of this user
Rapunzl Reminisces
Logged Logged
 
Automatic Filter Message : Please follow the forum rules for forum signatures...Thanks
 
 
#60237
Re:message box with use joomla style enabled 2 Months, 4 Weeks ago  
And just to be clear, you put that in your template.css file in your JA Purity folder correct?
oniell (User)
Junior Boarder
Posts: 21
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#60238
Re:message box with use joomla style enabled 2 Months, 4 Weeks ago  
correct!

A good thing with doing things this way is that every time you reinstall a component you've customized CSS for, you don't have to change it again... as long as you keep your template css backed up and they don't change the CSS naming properties in the component.

Rapunzl (User)
Junior Boarder
Posts: 22
graphgraph
User Offline Click here to see the profile of this user
Rapunzl Reminisces
Logged Logged
 
Last Edit: 2008/10/13 22:20 By Rapunzl.
 
Automatic Filter Message : Please follow the forum rules for forum signatures...Thanks
 
 
Go to top