Footer Links
gpEasy Themes
Using Themes
Creating Themes
gpEasy comes standard with a few links that are typically positioned at the bottom of the page. These include the "Site Map", "Login" and "Powered by gpEasy CMS" links. There are a number of options for hiding and styling these links to match custom themes and fit in with developed sites.
Styling Links
These links are all wrapped with unique class names which makes it very easy to apply your own style.
An example CSS code that would affect all three links:
.sitemap_link, .login_link, .powered_by_link {
/* this is not good for accessibility: */
/*text-decoration:none;color:#666; */
/* use this instead : */
position: absolute;
left: -999em;
top: 0em;
width: 0em;
}
Hiding 'Powered by gpEasy CMS'
The "Powered by gpEasy CMS" link is a very significant factor in the ongoing success of gpEasy, but we understand that some users will want to hide this link on their sites.
To hide the "Powered by gpEasy CMS" link on your installation, click the "Configuration" link in your admin panel. Then find the field labeled "Hide gpEasy Link", change to "Hide" then save.
Alternatively, if you desire to give some "link love" to gpEasy but not have the "Powered by gpEasy CMS" displayed just style the link as follows:
.powered_by_link {display:none;}
The link will not be displayed to the visitor in the browser but is still in the code on the page.