Fluid Apricot
My feedback
22 results found
-
0 votes
An error occurred while saving the comment -
1 vote
An error occurred while saving the comment Fluid Apricot commentedSorry for the late reply, was on vacation.
In your case the "anonymous" label is shown to the public (instead of your name) because your privacy settings are set to show your name to logged in members only. Try the following CSS:
/* Hide author name on forum summary only */
#idForumContainer #idForumSummaryContainer div.boxBodyContainer table td.lastReplyTD div.lastReply span
{
display: none;
}/* Hide author name on forum topic */
#idForumContainer #idForumDetailsContainer #idMessageListContainer div.boxBodyContainer table.forumMessageTable td.left div.boxBodyInfoOuterContainer
{
width: 0px;
}/* Remove both top and bottom Add Comment buttons on forum topic */
#idForumContainer #idForumPanelContainer input.forumPanelButton, #idForumContainer #idForumDetailsContainer #idForumBottomPanelContainer input
{
display: none;
}An error occurred while saving the comment Fluid Apricot commentedI see, you are referring to the "administrator" next to the author's name. Unfortunately you cannot just hide the "administrator" part without also hiding the author's name.
/*** To hide both author and "administrator" label on the forum summary page ***/
#idForumSummaryPageContainer #idForumListContainer div.boxBodyContainer table td.lastReplyTD div.lastReply span
{
display: none;
}/*** To hide author and "administrator" label on a specific forum page ***/
#idForumContainer #idForumSummaryContainer div.boxBodyContainer table td.lastReplyTD div.lastReply span
{
display: none;
}*Please note all tweaks and hacks like these should be used at your own discretion. We cannot guarantee ongoing compatibility of any CSS/JS customizations with our future upgrades.
An error occurred while saving the comment Fluid Apricot commentedCan you tell us your website and the page in question so we can take a look?
An error occurred while saving the comment Fluid Apricot commentedThe easiest way to go is to assign a membership to your admin record - your name is shown instead. You can then set your name to "Administrator" if you want.
An error occurred while saving the comment Fluid Apricot commentedFor the blog itself you were missing:
span.postedByLabel
{
display: none;
}The gadget on the other hand is a bit tricky since you cannot hide just the "anonymous" part without hiding the date as well. To hide both the date and "anonymous" part use:
div.itemInfoContainer
{
display: none;
}An error occurred while saving the comment Fluid Apricot commentedCan you tell us your website so we can take a look?
An error occurred while saving the comment Fluid Apricot commentedThis should remove the "anonymous" label:
span.postedByLabel
{
display: none;
}An error occurred while saving the comment Fluid Apricot commentedLeigh,
Try this:
.itemAuthor
{
display: none;
}An error occurred while saving the comment Fluid Apricot commentedThis CSS code will hide the blog author name:
SPAN.postedByLink
{
display: none
}
The ids are already predefined and you can use something like firebug http://getfirebug.com or view the page source code to locate them.