How to hide report's description

(6 posts) (2 voices)

Tags:

No tags yet.

  1. cayasanchez, Member

    Good morning MyDBR team:

    Since we updgraded the MyDBR version to 6.9.4 we noticed that the description is showed on every report in the menu.
    We want to show only the report name and hide the description.
    Please tell me how to do that.

    Please review the image in the following link:

    https://drive.google.com/file/d/1cC1QTRz2CfC7-9yLYxgtgkSLOu3iU8XK/view?usp=sharing

  2. cayasanchez, Member

    We want to remove the description only for the favourites reports that are showed when clicking on the star icon at the top.

  3. myDBR Team, Key Master

    You can add followin CSS rule to the user/userstyle.css:

    .mainview .favgroup .description { display: none; }

    --
    myDBR Team

  4. cayasanchez, Member

    Thanks for your reply.

    I tried what you suggested and the description is no longer showed in the favorites menu, but if I click on the star icon at the top, it is still showing the description. I want to exclude the description from the list of favorites when clicking on the star icon.

    Please review the image: https://drive.google.com/file/d/1vLukNjaknma7HvKW6fM0B98Dj0hjcxYg/view?usp=sharing

  5. cayasanchez, Member

    I have tried adding this line of code to the userstyle.css file, but it didn't work:

    .mainview .favmenu .favdescription { display: none; }

  6. myDBR Team, Key Master

    The favmenu is an id, not a class, so you can use:

    .mainview #favmenu .favdescription { display: none; }

    --
    myDBR Team


Reply

You must log in to post.