Skip to content

Fluid Apricot

My feedback

22 results found

  1. 0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    3 comments  ·  Designers  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Fluid Apricot commented  · 

    The ids are already predefined and you can use something like firebug http://getfirebug.com or view the page source code to locate them.

  2. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    25 comments  ·  Designers  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Fluid Apricot commented  · 

    Sorry 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 commented  · 

    I 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 commented  · 

    Can 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 commented  · 

    The 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 commented  · 

    For 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 commented  · 

    Can you tell us your website so we can take a look?

    An error occurred while saving the comment
    Fluid Apricot commented  · 

    This should remove the "anonymous" label:

    span.postedByLabel
    {
    display: none;
    }

    An error occurred while saving the comment
    Fluid Apricot commented  · 

    Leigh,

    Try this:

    .itemAuthor
    {
    display: none;
    }

    An error occurred while saving the comment
    Fluid Apricot commented  · 

    This CSS code will hide the blog author name:

    SPAN.postedByLink
    {
    display: none
    }

2 Next →

Feedback and Knowledge Base