Other things can be hidden using CSS.
CSS goes in the 3rd box on the edit html page
When adding things like this to the css for a skin or the global css, it's best to scroll to the end of the css code, enter a few blank lines and then paste the code
| Author | Comment | |||
|---|---|---|---|---|
Kathy |
Hiding things using CSS |
Lead | ||
|
Some features can be turned on/off in the skins. It's on the wysiwyg button and the features tab.
Other things can be hidden using CSS. CSS goes in the 3rd box on the edit html page When adding things like this to the css for a skin or the global css, it's best to scroll to the end of the css code, enter a few blank lines and then paste the code
Last Edited By: Kathy 11-Apr-09 6:58 PM.
Edited 6 times.
|
||||
|
|
||||
Kathy |
Invite friends | #1 | ||
|
To hide the invite friends link
.invite { display: none; }
Last Edited By: Kathy 11-Jan-09 5:31 PM.
Edited 1 time.
|
||||
|
|
||||
Kathy |
#2 | |||
|
To hide quick reply
.reply-box { display: none; } To hide the contribute link and contributors. .contribute { display: none; } To hide the status column (the column for new posts and hot topics) .status { display: none; } .
Last Edited By: Kathy 11-Apr-09 6:54 PM.
Edited 3 times.
|
||||
|
|
||||
Kathy |
Hiding the mini profile block | #3 | ||
|
This for profiles rather than boards, but people still want to know how. You can hide just parts of it instead of all.
.miniprofile-block .boxheading, .miniprofile-block .boxbody, .miniprofile-block { |
||||
|
|
||||
Kathy |
Support link | #4 | ||
|
Some admins don't want to members to use the Support link to report problems, they would rather have members PM them directly or to use a Help ticket for
problems.
li.support-link {display: none;} |
||||
|
|
||||
Kathy |
Last edited | #5 | ||
|
To hide the "last edited by" text completely, add this to your domain CSS:
div.edit-info {display: none;} |
||||
|
|
||||
Kathy |
"view my images" from a profile | #6 | ||
.view-images { display: none; } To the Advanced CSS for the profile skin. |
||||
|
|
||||
Kathy |
Hiding the delete button in a lead post | #7 | ||
|
When you delete the lead (first) post in a topic, the entire topic is deleted. If you have your forum set to allow users to delete their own posts or if you
just want a reminder for yourself and the other admins/mods on your board, you can hide the lead delete option using CSS. Admins and mods can use topic tools
instead. This way you don't accidently delete a topic.
.lead .delete { display: none; } |
||||
|
|
||||
Kathy |
RSS and email subscription | #8 | ||
|
To hide the links at the bottom of the page.
.breadcrumb-box .subscription-links { display: none; } . |
||||
|
|
||||