Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Re:Default Colors Problem. CSS Help Needed (1 viewing) (1) Guest
Go to bottom Favoured: 0
TOPIC: Re:Default Colors Problem. CSS Help Needed
#54338
Default Colors Problem. CSS Help Needed [SOLVED] 2 Months, 3 Weeks ago  
How do.

Firstly. Thanks for the great forums. It's very nice not worrying about bridges and other nasty installs FireBoard is so simple and effective!

Now my problem.

My default Font color on Joomla seems to being uses also in FireBoard. Sadly it's just about the same color as the background of the FireBoard and it's very hard to read. I've tried playing with the CSS but I can't seem to find what color code I need to change. It would be nice if I could change the grey text to black. My forums can be found here: badsin.org/binfo/index.php?option=com_fireboard&Itemid=53

Nothing there yet but some fake menus.

Any help would be greatly appreciated.

Thanks
Patrick
badpatrick (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/07/23 11:51 By badpatrick.
 
The administrator has disabled public write access.  
#54371
Re:Default Colors Problem. CSS Help Needed 2 Months, 3 Weeks ago  
Hi,
I am having the same problem as you. I have done by trial and error changed the color codes in the CSS Editor but have not found the correct location to change. It would be nice if there was some way to identify which point in the CSS sheets is the correct place in the FireBoard data.

I tried using Dreamweaver to edit the CSS but there is no additional information available beyond what you get with the CSS Editor.

Cheerz,

steVe
quidam (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#54407
Re:Default Colors Problem. CSS Help Needed 2 Months, 3 Weeks ago  
Web Developer Tools or/and FireBug.
grinchy (User)
Senior Boarder
Posts: 355
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#54410
Re:Default Colors Problem. CSS Help Needed 2 Months, 3 Weeks ago  
I am having the same problem. I have tried to tweak virtually everything in the forum.css file, but can find no place that changes the default text at all. I don't know what firebug is, and couldn't find it in the download section... Thx.

bmichael (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#54413
Re:Default Colors Problem. CSS Help Needed 2 Months, 3 Weeks ago  
Got it!
I have been struggling with this. Fireboard will carry over the default text color in your template's .css file. If the default color is white, or very light, it doesn't really work.

However, you can override it in the forum.css file in the fireboard template directory - i.e. /components/com_fireboard/template/default/

I added the the line "#fireboard {color: #000000;}" in the code below which changes the default text color to black...(or whatever you want).

/**
* @version $Id: forum.css 499 2007-12-16 22:33:57Z fxstein $
* Fireboard Component
* @package Fireboard
* @Copyright (C) 2006 - 2007 Best Of Joomla All rights reserved
* @license www.gnu.org/copyleft/gpl.html GNU/GPL
* @link www.bestofjoomla.com
**/

#fireboard {color: #000000;}
#fireboard a { text-decoration:none; font-weight:normal;color:#404040;}
#fireboard a:link , #fireboard a:visited{ color:#404040;}
#fireboard a:hover { color: #87bc01;}
#fireboard .fbxs {font-size: 9px;}
#fireboard .fbs {font-size: 10px;}
#fireboard .fbm {font-size: 11px;}
#fireboard .fbl {font-size: 12px;}
#fireboard .fbxl {font-size: 13px;}
#fireboard .fbxxl {font-size: 14px;}
bmichael (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#54429
Re:Default Colors Problem. CSS Help Needed 2 Months, 3 Weeks ago  
Ty Ty Ty!

Worked like a charm!
badpatrick (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
Go to top