Removing video tutorial links from Sitefinity 4.3 backend
Hello, I want to customize the backend of Sitefinity.
All I want is to remove the video tutorial links from e.g: Pages which are found at the bottom right of the screen.
How can I do that?
Thanks.
The general advice that I got and which still works is to do it in the CSS. Hide it through the CSS. I think I did it by going to the Backend Pages. Clicked on the Templates link (on the right hand side you will see it), clicked on the Default Template (the one used for all pages), then on it, somewhere at the bottom (out of the way) I dropped a CSS control (from the Scripts and Styles drop-down), when editing the CSS control I have clicked on Write CSS and wrote this:
.sfExternalLinks
display: none;
This did the trick man, thanks for this awesome reply!!!