Page 1 of 1

HTML Nugget Question

Posted: Mon Dec 11, 2006 11:13 am
by siringo
How can I remove the 'Edit' link under the nugget? It looks messy, as shown here on the RHS under the media player links.

Thanks.

Re: HTML Nugget Question

Posted: Mon Dec 11, 2006 11:21 am
by garvinhicking
Hi!

Those only appear for you as logged in admin user! Your visitors won't see that.

Or you can alter your style.css stylesheet:

Code: Select all

.serendipity_edit_nugget {
  display: none;
}
Regards,
Garvin

Posted: Mon Dec 11, 2006 11:23 am
by siringo
Thanks Garvin, much appreciated. If visitors don't see it, I'll just leave it. Thanks again.

Re: HTML Nugget Question

Posted: Mon Dec 11, 2006 11:23 am
by yellowled
siringo wrote:How can I remove the 'Edit' link under the nugget? It looks messy, as shown here on the RHS under the media player links.
I suppose you know that this only appears if you're logged in?

If you still want to hide it, you can do so using CSS. Add:

Code: Select all

.serendipity_edit_nugget { display: none; }
to the style.css of the template you're using.

A well-intentioned hint: This question isn't really related to the installation, another forum ('Plugins' comes to mind) would have been a better choice.

YL