Dennis Paulsen Registered Users
 Nuke Newbie Posts:7

 |
| 10/20/2005 7:38 PM |
|
I want to change the large area where the text and text box fills as well as the scroll bar. The white color throws off the entire website look. I didnt see it in the CSS, is there another file I am missing?
Thanks |
|
|
|
|
Dennis Paulsen Registered Users
 Nuke Newbie Posts:7

 |
| 10/26/2005 4:35 PM |
|
Can someone please tell me which css class changes this? I am talking about the background of the shout box, the large area of the shoutbox that your shouts reside in.
please? |
|
|
|
|
Scott McCulloch Administrators
 Nuke Master Posts:12596


 |
| 10/26/2005 5:36 PM |
|
It's .shoutTextCell, add this to your skin or portal stylesheet.
.shoutTextCell { color: black; padding: 6px; background-color: #FFFFCC; } |
|
Scott McCulloch Site Administrator |
|
|
Dennis Paulsen Registered Users
 Nuke Newbie Posts:7

 |
| 10/26/2005 5:53 PM |
|
Thats exactly what I added directly to the stylesheet editor in DNN Site. I tried BLACK in place of #000000 as well. These are the only extra lines added to the portal.css I even restored the original.
.shoutTable { background-color: black; margin: 0px; }
.shoutTextCell { color: #000000; padding: 6px; background-color: #006600; }
.shoutAltTextCell {color: white; padding: 6px; background-color: #000000; }
Is there something that could be over writing it?
thx |
|
|
|
|
Scott McCulloch Administrators
 Nuke Master Posts:12596


 |
| 10/27/2005 5:50 PM |
|
Hmm, I think you can only customize where each message is (white + yellow for alt).
I'll add some extra styles in the next version for the scrollbar and white area. |
|
Scott McCulloch Site Administrator |
|
|
Dennis Paulsen Registered Users
 Nuke Newbie Posts:7

 |
| 10/27/2005 7:10 PM |
|
This guy did it. He changed the background with what looks like a BG.JPG. Also, I have the obsidian skin and when I load it on that the background is dark grey.
Go to http://www.iclanz.com/builder and you will see the White BG.
Then go to http://www.iclanz.com/builder2 and you will see it's the dark grey. I did not set that to dark grey it pulled it from the skin. There has to be a way to set it.
Thanks for your help Scott.
Dennis |
|
|
|
|
Scott McCulloch Administrators
 Nuke Master Posts:12596


 |
| 10/28/2005 5:02 AM |
|
| He must have went in and directly modified the ascx to achieve that effect I would say.. |
|
Scott McCulloch Site Administrator |
|
|
nduda Registered Users
 Nuke Newbie Posts:2

 |
| 8/29/2007 6:58 AM |
|
So how can i change the background color? Its black right now and so is the text of the user/time/date that posted the comment. |
|
|
|
|
Scott McCulloch Administrators
 Nuke Master Posts:12596


 |
| 8/29/2007 7:27 AM |
|
You need to take the styles and copy them to your portal or skin stylesheet.
.shoutTable { background-color: black; margin: 0px; } .shoutTextCell { color: #000000; padding: 6px; background-color: #006600; } .shoutAltTextCell {color: white; padding: 6px; background-color: #000000; }
Changing the background colour as necessary. |
|
Scott McCulloch Site Administrator |
|
|
nduda Registered Users
 Nuke Newbie Posts:2

 |
| 8/29/2007 10:27 AM |
|
How can i modify the skin stylesheet from the interface? I added the lines above (and changed them) under Admin > Site Settings > StyleSheet Editor , saved the changes and the ShoutBox is still with black background. |
|
|
|
|
Jay Villa Registered Users
 Nuke Active Member Posts:49

 |
| 10/22/2008 10:00 AM |
|
| Right now my backgroud is black, the text is black, Username, time, and date are all black. I changed the text so now comments are white and yellow, but theer is no way for me to get the username, time, or date to show whatsoever. Please help! |
|
|
|
|
Jay Villa Registered Users
 Nuke Active Member Posts:49

 |
| 10/22/2008 12:27 PM |
|
OK... found a fix.
On the shoutlog.aspx file, add the following code in the head section:
body {background:#ffffff;}
Add it between style tags. I couldn't post it on this message. Now this code changes the chat area to white (my situation) if your website background is dark. The shoutbox inherits the body and .normal tags from your portal.css or default.css file, therefore if you have black letters and a black background with white containers, shoutbox will not display correctly.
I hope this helps some people. |
|
|
|
|