Modifing a Web Part issue

  • Thread starter Thread starter IT_Support_Agent
  • Start date Start date
I

IT_Support_Agent

I provide support for end users and a user is having an issue with Frontpage.
She has a web part section for links but at the bottom of it there is an
option for Add new Link for users that visit the sharepoint site. She does
not want this option on the site. She should be the only one that can add a
link to the site. Any assistance that anyone could provide would be greatly
appreciated.
 
In code/HTML view delete the line that reads 'Add New Link'. And out of
curiosity, where did that 'Add New Link' take them?
 
I tired finding the Add New Link section in the code but it was confusing.
I've seen html code and I couldn't find a simple line like
<tr><a href="xxx">Add New Link</a></tr>. I'll have to get a copy of the
section it should be in and post it this weekend. It is a sharepoint site
within my company's network. I think the link will take users to a web
interface section that will allow them to add a link to the site. I'm not
sure though. I will contact the user again tomorrow (Friday) and find out
exactly. Until then, thanks for help Dan.
 
I tired finding the Add New Link section in the code but it was confusing.
I've seen html code and I couldn't find a simple line like
<tr><a href="xxx">Add New Link</a></tr>.


Among other possible causes, look for this:
<tr><td><a href="xxx">Add New Link</a></td></tr>

There must be at least one table cell <td></td> in a table row <tr></tr>

I'll have to get a copy of the
 
Back
Top