Need help with the changing of background colors in forum

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   Need help with the changing of background colors in forum
TSKara61
CZ Newbie
TSKara61 has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: Sep 27, 2006
0.00 posts per day
Posts: 13
Points: 0
   
Hello,

I have created a new website and we're working hard to get it ready to open, but there is still some problems that we couldn't solve. In our forums of php nuke whenever you go over the topics with your mouse the color of the back changes from light blue to dark grey. I dont know much about coding and so far Ive changed all the colors by going manually in the code and changing the color codes and basically if I got lucky the colors would be what I wanted. But I havent found the code for this color change. Can somebody help me?? If you want to see what it looks like it's here. [ Register or login to view links on this board. ] Click "Forumlar" from the side. thank you.



Back to top Reply with quote
#2   re: Need help with the changing of background colors in foru
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 42
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
If is nuke check

themes/yourtheme/style/style.css


Also check if exist

themes/yourtheme/forums/style/style.css


Or any other .css file that might be in the forums folder.


Back to top Reply with quote
#3   re: Need help with the changing of background colors in foru
TSKara61
CZ Newbie
TSKara61 has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: Sep 27, 2006
0.00 posts per day
Posts: 13
Points: 0
   
Thank you but I was wondering where in the code is the part that describes the color change.



Back to top Reply with quote
#4   re: Need help with the changing of background colors in foru
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 42
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
Thats a hard question to answer without knowing more specifics.

If you mean the background of the page it could be just a hex value like #FFFFFF or it could an image like mine.

/* Background of page */
/*background-color : #959596;*/
background-image: url(../../../themes/UD_Light/images/bg.jpg);


Hope that helps


Back to top Reply with quote
#5   re: Need help with the changing of background colors in foru
TSKara61
CZ Newbie
TSKara61 has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: Sep 27, 2006
0.00 posts per day
Posts: 13
Points: 0
   
Thank you guys for your help so far. Unfortunately those aren't the answers to my question.

I've taken a snapshot of the problem, maybe now you guys can help me.




Back to top Reply with quote
#6   re: Need help with the changing of background colors in foru
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 42
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
O snap I am sorry I should of read your post a little more carefully. The answer is still gonna be in your style.css file or whatever .css file your forum template uses. If you would like to attach it in a .zip or post the code I will have a look.



Back to top Reply with quote
#7   re: Need help with the changing of background colors in foru
TSKara61
CZ Newbie
TSKara61 has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: Sep 27, 2006
0.00 posts per day
Posts: 13
Points: 0
   
here is the style.css.

I also have another problem. At the top of that box where the color change happens an image used to appear. I belive that image is row1.gif. BUt that no longer appears there. İf you know a solution for that then I would appreciate it a lot.



Attached Files
style.rar (2.64 KB, Downloaded: 5232 Time(s))


Back to top Reply with quote
#8   re: Need help with the changing of background colors in foru
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 42
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
I am not .css expert for sure, but I think its this line that does that.

.tablein {
color : #000000;
font: normal 11px  Arial, Helvetica, sans-serif;
background:#101e5a;
BORDER-TOP: #ffae00 1px solid;
BORDER-BOTTOM: #ffae00 1px solid;
BORDER-LEFT: #ffae00 1px solid;
BORDER-RIGHT: #ffae00 1px solid;
}


Be sure to back this up before making any changes. But you could just try changing #000000; to #FFFFFF;. If that works. Do this

.tablein {
background-image: url(file:///D|/DOCUME~1/themes/GoblinGreen/images/row1.gif);
background-repeat: repeat-x;
background-color : #156e91;
BORDER-TOP: #ffae00 1px solid;
BORDER-BOTTOM: #ffae00 1px solid;
BORDER-LEFT: #ffae00 1px solid;
BORDER-RIGHT: #ffae00 1px solid;
}



Back to top Reply with quote
#9   re: Need help with the changing of background colors in foru
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 42
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
url(file:///D|/DOCUME~1/themes/GoblinGreen/images/row1.gif);


Is probably why your image is missing. Unless your site is hosted by you it should look something like this.

themes/GoblinGreen/images/row1.gif



Back to top Reply with quote
#10   re: Need help with the changing of background colors in foru
TSKara61
CZ Newbie
TSKara61 has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: Sep 27, 2006
0.00 posts per day
Posts: 13
Points: 0
   
THANK YOU SOOO MUCH!! I solved the row1 problem, but i still haven't been able to get rid of the grey background. I will keep working on it and keep you posted.



Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum