XF 1.1 how to background-color navTabs only forum_id = 3 color # 333

If you want to change the "forum" navigation tab (the only thing I can guess from your original post), apply this css through EXTRA.css:
Code:
.node3 .navTab.forums .navLink {
  background: #333 url('styles/default/xenforo/gradients/navigation-tab.png') repeat-x top;
}

Which will provide something similar to this, only when in node ID 3:
Screen Shot 2013-07-04 at 1.13.09 AM.webp

If not, please provide a screen shot. :)

Edit: Note, this will also apply to any sub-forums. Nature of how XenForo works, I'm afraid.
 
Last edited:
Umm...I still dont understand your question. Do you want to navtab color to change while in a certain forum?
my english is bad :(

If you want to change the "forum" navigation tab (the only thing I can guess from your original post), apply this css through EXTRA.css:
Code:
.node3 .navTab.forums .navLink {
  background: #333 url('styles/default/xenforo/gradients/navigation-tab.png') repeat-x top;
}

Which will provide something similar to this, only when in node ID 3:
View attachment 50601

If not, please provide a screen shot. :)

Thanks @King Kovifor, you to help me again, thank you very much :love:
 
My pleasure. Please see my edited note, since that CSS will target node ID #3 and all sub-forums due to how XenForo functions and applies a global nodeID to the body tag.
 
Top Bottom