Delete Item Information

Forums General discussion Delete Item Information

Viewing 3 reply threads
  • Author
    Posts
    • #17672

      Hi,

      in Office365/Sharepoint Online is it somehow possible to get rid of the item information as you can see in the screenshot attached when an item is opened in dialog box?

      thanks.

      Attachments:
    • #17680
      Alexander Bautz
      Keymaster

      Yes, just add this to the Custom CSS:

      .ms-toolbar .ms-descriptiontext{
          display:none;
      }

      Alexander

      • #17685

        thanks, that helped.

        the only compromise is to accept the Buttons (Save, Edit, Cancel,…) which are also located in the .ms-descriptiontext are gone as well but can still be accessed through the ribbon bar.

    • #17689
      Alexander Bautz
      Keymaster

      Strange – in my Office 365 site, the buttons are not hidden by the above CSS. Try this instead:

      #onetidinfoblock1, #onetidinfoblock2{
          display:none;
      }

      Alexander

    • #17712
      Alexander Bautz
      Keymaster

      Use the developer tools to get the ID of the elements you want to hide by right clicking the item and select “inspect”. When you have the ID you can modify the CSS snippet to hide the new ID also.

      Alexander

Viewing 3 reply threads
  • You must be logged in to reply to this topic.