1
billyevil
Regarding Newbb
  • 2004/10/10 13:13

  • billyevil

  • Just popping in

  • Posts: 4

  • Since: 2004/10/10


I installed the latest Newbb forum version and i like the popup menus for topic options and such, but i can't seem to find the css codes for manipulating the background color and text. I want a white background with black text like here on the forums. If someone could tell me what i am looking for i'd appreciate it.

2
Draven
Re:Regarding Newbb
  • 2004/10/10 13:23

  • Draven

  • Module Developer

  • Posts: 337

  • Since: 2003/5/28


Look in include/newbb.css for ".head". I believe that is the class you are looking for.

3
meme
Re:Regarding Newbb
  • 2004/10/10 13:23

  • meme

  • Quite a regular

  • Posts: 271

  • Since: 2002/12/10


td#centercolumn th
style.css in your theme

4
Draven
Re:Regarding Newbb
  • 2004/10/10 13:26

  • Draven

  • Module Developer

  • Posts: 337

  • Since: 2003/5/28


Quote:

Draven wrote:
Look in include/newbb.css for ".head". I believe that is the class you are looking for.

Sorry, it uses the class Head from the styles.css in your theme folder.

5
billyevil
Re:Regarding Newbb
  • 2004/10/10 14:30

  • billyevil

  • Just popping in

  • Posts: 4

  • Since: 2004/10/10


Both were close. The head css options changed the background on the popup menu itself, which was something i wanted to do but not a big priority. I'm attaching a screenshot showing what i want to change.
Resized Image

6
billyevil
Re:Regarding Newbb
  • 2004/10/10 14:35

  • billyevil

  • Just popping in

  • Posts: 4

  • Since: 2004/10/10


I want black text with a white background on topic options, search forums, viewmode, and the username..not the white text with dark background it currently has. I thank everyone for the help so far.

7
meme
Re:Regarding Newbb
  • 2004/10/10 21:41

  • meme

  • Quite a regular

  • Posts: 271

  • Since: 2002/12/10


for the bar
td#centercolumn th { background-color: White; color: Black; }
in your styel.css that uses in theme

for the hightlight , font , links and option follow Draven reply msg

just play with css files thats all

8
Anonymous
Re:Regarding Newbb
  • 2004/10/10 21:53

  • Anonymous

  • Posts: 0

  • Since: 0


in the newbb/include/newbb.css:


le="color: #000000"><?php .... ul { width:160px; border:0px solid #9d9da1; background:#2F5376; list-style:none; } li { position:relative; padding:1px; padding-left:10px; [color=FF0000]background:#2F5376;[/color] z-index:9; } li.folder [color=FF0000]{ background-color:#2F5376; color:white; list-style:none;}[/color] li.folder:hover { z-index:10;} li.folder ul { position:absolute; display:none; left:-56px; /* IE */ top:17px; } li.folder>ul { left:-1px; top: 16px} ul.level1 {z-index:1} li.folder:hover ul.level2, ul.level2 li.folder:hover ul.level3 { display:block; } .link { border: 0px; padding: 2px; text-decoration: none; color: black !important; font-weight: bold; width: 100%; /* IE */ text-align: left; } li>.link { width:auto; } li link.submenu { [color=FF0000]background:#2F5376;[/color] }


Change #2F5376 to white and

{ background-color:#2F5376; color:white; list-style:none;}

the color:white to color:black

9
billyevil
Re:Regarding Newbb
  • 2004/10/10 22:04

  • billyevil

  • Just popping in

  • Posts: 4

  • Since: 2004/10/10


Thank you Predator, it worked perfectly. Hopefully this helps others as well.