Question

Everytime you open an item you can see navigation links on top of the page that lets you go back to the list.

Is there a way to hide those links? (screenshots below)

screenshot 1

screenshot 2

Was it helpful?

Solution

Ah, from my good old 2003 days (and still works in all versions)

You need JavaScript and CSS skills.

There are many ways to achieve what you want, maybe the easiest is:

  • Browse to a New Form/Edit Form

  • examine using F12 developer tools what JavaScript is required to hide those elements

Note: no need for jQuery, something like:

document.getElementById('[the id you explored]').style.display='none';

should be enough

Tip: do not put the code inside the CEWP but link to an external JS file (not sure if this was possible in 2007) you put somewhere in a library.

One file to rule them all

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top