Sometimes DNN provides more default features than the average admin needs. A common example is the collection of links that appear on every page for TERMS OF USE, PRIVACY STATEMENT and COPYRIGHT (actually COPYRIGHT is a label, not a link). Fortunately it's very easy to remove any or all of these links without editing your DotNetNuke skin...
Hide Unwanted Links with CSS
The TERMS and PRIVACY links as well as the COPYRIGHT label are all provided through DNN skin objects. These particular skin objects are common to every version of DNN and are assigned the same ID values regardless of the skin you are using. Knowing this, it's easy to add a small bit of CSS to get rid of the links/labal on a DotNetNuke portal without actually editing the DNN skin.
Here are the rendered ID values of the links:
TERMS link ID value = dnn_dnnTERMS_hypTerms
PRIVACY link ID value = dnn_dnnPRIVACY_hypPrivacy
COPYRIGHT span ID value = dnn_dnnCOPYRIGHT_lblCopyright <- Not a link!
To hide a link, use your portal's SITE SETTINGS->STYLESHEET EDITOR found under the ADMIN menu (you must be logged in as an ADMIN or as a HOST to see the ADMIN menu).
In STYLESHEET EDITOR, add the following lines to the bottom of the edit box. Be careful not to replace or delete anything else in the box. (Note: Only add the lines for the links/label you wish to hide.)
a#dnn_dnnTERMS_hypTerms{display:none}
a#dnn_dnnPRIVACY_hypPrivacy{display:none}
span#dnn_dnnCOPYRIGHT_lblCopyright{display:none}
Once you've added the line(s), click "Save Style Sheet" and you're done. The links/label should now be hidden on all pages of the portal.