useful extra.css tips

Status
Not open for further replies.

principia

OMG Member
Joined
Mar 23, 2011
Messages
148
Often there are the little things in life which make the xenforo world easier ;)
The extra.css template is one of this cool things. You can finetune your forum without fear of the next update. Nice feature.
But do you know all things you can put in there?
Never ;)

Here are the extra.css entries I am using on my forum.
What about yours? :)

-------------------------------------------
/* no Visitor Panel in Sidebar */
.visitorPanel {
display: none;
}
-------------------------------------------
/* no Help in navbarTab */
li.navTab.help{
display: none;
}
-------------------------------------------
/* no RSS Feed Pics in Forum */
.nodeList .nodeControls
{
display: none;
}
-------------------------------------------
/* no pics in Signature */
.signature .bbCodeImage {
display: none !important; }
-------------------------------------------
/* no Forum Name above Forum Index */
.forum_list .titleBar {
display: none; }
-------------------------------------------
/* Increase width of smiley dropdown menu */
.xenForoSkin .mceSmiliesMenu div {
width: 600px !important;
}
 

Watts

OMG Member
Joined
Dec 8, 2011
Messages
19
so for instance if i wanted to use the no forum title would i scroll right to the very bottom of the extra.css file and put

/* no Forum Name above Forum Index */
.forum_list .titleBar {
display: none; }
 
Status
Not open for further replies.
Top