Runboard.com
Слава Україні!
Runboard Extra Chat Room Support Search Facebook

Runboard.com       Sign up learn about it | Sign in lost password?

Page:  1  2  3  4  5  6  7 

 
Lesigner Girl Profile
Live feed
Blog
Friends
Miscellaneous info

 

Head of Runboard staff

Registered: 11-2005
Posts: 1895
Karma: 83 (+86/-3)
Reply Quote
Re: Text Color


You ROCK, Queeny! :up Thanks! emoticon

---
Runboard Knowledge Base
Runboard Support Forums
Find other message boards
4/5/2008, 3:00 am Link to post Email Lesigner Girl   PM Lesigner Girl Blog
 
Queenyforever Profile
Live feed
Blog
Friends
Miscellaneous info

 


Registered: 01-2007
Location: Just north of the clouds...
Posts: 200
Karma: 4 (+11/-7)
Reply Quote
Re: Text Color


BTW...it looks sooooo good in here! emoticon

---

“Freedom and democracy are dreams you never give up.”

4/7/2008, 11:42 pm Link to post Email Queenyforever   PM Queenyforever Blog
 
Lesigner Girl Profile
Live feed
Blog
Friends
Miscellaneous info

 

Head of Runboard staff

Registered: 11-2005
Posts: 1895
Karma: 83 (+86/-3)
Reply Quote
Re: Text Color


Thanks, Queeny! emoticon

---
Runboard Knowledge Base
Runboard Support Forums
Find other message boards
4/8/2008, 1:45 am Link to post Email Lesigner Girl   PM Lesigner Girl Blog
 
Erika E Profile
Live feed
Blog
Friends
Miscellaneous info

 


Registered: 10-2003
Posts: 58
Karma: 8 (+9/-1)
Reply Quote
Re: Text Color


This was what I was looking for, and has helped me, but still a little stuck & need some help from the expert. emoticon

This is what I have on one of my test boards right now.

.forumlistwhosonlinetable
{ color:#ffffff; width: 100%; border: 2px solid #ffff88; background-color:#cdb3a4; }

Its all fine. But what I want is the font bigger and a different style, poss verdana.
I tried adding font-size: and then did a size in px but it never changed.

LESAAAAAAAAAAA HELP emoticon

---

Support
Directory
Customer Service
TCC
9/2/2008, 12:58 pm Link to post  
 
Queenyforever Profile
Live feed
Blog
Friends
Miscellaneous info

 


Registered: 01-2007
Location: Just north of the clouds...
Posts: 200
Karma: 4 (+11/-7)
Reply Quote
Re: Text Color


Hmmmmm, not sure hon...this is what that area of my CSS looks like:

/* CHANGES AND ADJUSTS THE WHO IS ONLINE TABLE */
.forumlistwhosonlinetable {background-color: #3B8471;}
.forumlistwhosonlinetd {padding: 8px;}

/* SETTINGS FONT TYPE, COLOR AND SIZE TO REMAINING ELEMENTS */
span.locationboard, span.locationforum, span.locationtopic {font-size:18px;font-family:verdana}

/*THIS CHANGES THE FONT SIZE FOR FORUM TOPICS*/
.forumlistforumname, .topiclisttopicname {color:#FFFFFF;font-size:18px;font-family:verdana}


Don't know if that is any help at all. emoticon

---

“Freedom and democracy are dreams you never give up.”

9/2/2008, 8:26 pm Link to post Email Queenyforever   PM Queenyforever Blog
 
Erika E Profile
Live feed
Blog
Friends
Miscellaneous info

 


Registered: 10-2003
Posts: 58
Karma: 8 (+9/-1)
Reply Quote
Re: Text Color


Aww Queeny your such a treasure. But no that won't work for me. But thankyou sooooo much for trying and taking the time to emoticon

---

Support
Directory
Customer Service
TCC
9/2/2008, 8:32 pm Link to post  
 
The PhoenixRising Profile
Live feed
Blog
Friends
Miscellaneous info



Registered: 01-2008
Location: State Of Confusion
Posts: 257
Karma: 5 (+5/-0)
Reply Quote
Re: Text Color


Without seeing the code/link to your test board, I won't be much help, but it sounds like maybe the font style and size are defined somewhere else (perhaps the body's CSS), and it is over riding your who's online css.

Anyway I might not be any help anyway.. I just installed Google's new web browser Google Chrome, (beta) and testing it out. A link to your test board would help us (non Demi-Gods) in helping you better lol.

Last edited by The PhoenixRising, 9/2/2008, 9:14 pm


---

9/2/2008, 9:13 pm Link to post PM The PhoenixRising
 
Erika E Profile
Live feed
Blog
Friends
Miscellaneous info

 


Registered: 10-2003
Posts: 58
Karma: 8 (+9/-1)
Reply Quote
Re: Text Color


Hello Josh. Was still playing it and not having a great time. I have it up on my board. TCC click Ponch below.
I have this in the CSS

.forumlistwhosonlinetable
{ color:#ffff88; }

Never liked the border. But I think I know what may be wrong isn't there a way to get the names up top a dif color cos they are links mebbi? Hmm well the actual whos online bit has gone yellow but I never wanted that to go yellow, I mean im ok with it but its the peoples names up there that I wanted to change, and make bigger is it possible.
Thanks.

---

Support
Directory
Customer Service
TCC
9/2/2008, 10:04 pm Link to post  
 
Lesigner Girl Profile
Live feed
Blog
Friends
Miscellaneous info

 

Head of Runboard staff

Registered: 11-2005
Posts: 1895
Karma: 83 (+86/-3)
Reply Quote
Re: Text Color


Hi guys emoticon

Take a look at this file here. That's Runboard's default CSS, which inserts itself when you check the "yes" box where it asks if you want to use it on the layout/colors screen. Most boards have this checked by default, and Erika, your board has it too.

Take a look at line 19 of the default CSS file:

span.forumlistwhosonline { font-family: verdana,arial,helvetica,sans-serif; font-size: 10px; }

The font is already verdana, which looks a little different at 10px than it does at, say, 12 or 13px.

span.forumlistwhosonline will automatically override any font definitions for .forumlistwhosonline or .forumlistwhosonlinetable no matter what. So, to change the 10px that's defined in the default CSS, you also need to use span.forumlistwhosonline like the default CSS does, in order to override the default definitions.

Taking the CSS you posted in your first post about this:

.forumlistwhosonlinetable
{ color:#ffffff; width: 100%; border: 2px solid #ffff88; background-color:#cdb3a4; }


I would define all of the text-related definitions under span.forumlistwhosonline, and any border/padding/background definitions under .forumlistwhosonlinetable.

.forumlistwhosonlinetable
{ width: 100%; border: 2px solid #ffff88; background-color:#cdb3a4; }

span.forumlistwhosonline { color:#ffffff; font-size: 12px; }


I don't think you want white text, but that's the color you posted above, and I'm sure you know how to change it.

Since text links are a different color than non-linking text, you have to target those separately.

span.forumlistwhosonline a:link, span.forumlistwhosonline a:visited { color: #??????; }

I'm sure you know what to do with the question marks. emoticon

I hope this helps! emoticon

---
Runboard Knowledge Base
Runboard Support Forums
Find other message boards
9/2/2008, 11:42 pm Link to post Email Lesigner Girl   PM Lesigner Girl Blog
 
Erika E Profile
Live feed
Blog
Friends
Miscellaneous info

 


Registered: 10-2003
Posts: 58
Karma: 8 (+9/-1)
Reply Quote
Re: Text Color


Ok sure I knew everything you said emoticon well I did understand it anyway.. emoticon

I got it up and its certainy much much clearer which is great perfect, but the names never changed color, isn't that possible Lesa? That is what I wanted to change, they are right now still black. But as I said it does look sooo much better. Thankyou. emoticon

---

Support
Directory
Customer Service
TCC
9/3/2008, 10:24 am Link to post  
 


Reply

Page:  1  2  3  4  5  6  7 





You are not logged in (login)