You are on page 1of 2

Release 04/25/2007 Simply Links is a Links Management

Pages 2 Component for Joomla! 1.0. This com-


ponent and together with the plugin
Version 1.0.1 provides the ability to convert keywords
Compatibility Joomla 1.0 from the content to links. You can easily
License GPL manage the Name, URL, Description at
the backend and the Mambot generates
Email info@nekkarcity.de automatically links based on them.

Go to the Menu, Installers > Componen-


ts, and install the simply_links.zip! After
success install of Simply Links, you can
instantly access the Simply Links Compo-
nent through the Menu, Components >
Simply Links.

1
Links
Manager 1

2 3
[1] Main Toolbar, [2] Select Fields [3]
Publish/Unpublish

Add/Edit
Link 4

5
[4] Main Toolbar, [5] Form with input
fields
/* internal Links */
a.simply_intern:link {
background: url(internal.gif) no-repeat 100% 0;
padding: 0 20px 0 0px;
} 1
a.simply_intern:visited {
background: url(internal.gif) no-repeat 100% -100px;
padding: 0 20px 0 0px;
} 2
a.simply_intern:hover, a.simply_intern:active, a.simply_intern:focus {
color: #fff;
1 background: #669999 url(internal.gif) no-repeat 100% -200px;
padding: 0 20px 0 0px;
} 3
/* external Links */
a.simply_extern:link {
background: url(external.gif) no-repeat 100% 0;
padding: 0 20px 0 0px;
}
2 a.simply_extern:visited {
background: url(external.gif) no-repeat 100% -100px;
padding: 0 20px 0 0px;
}
a.simply_extern:hover, a.simply_extern:active, a.simply_extern:focus {
color: #fff;
background: #669999 url(external.gif) no-repeat 100% -200px;
padding: 0 20px 0 0px;
3 }

2
[1] Position from Link a, [2] Postion from Link Visted[3] Postion from Link
CSS Hover. (Analog external Link)

function simplyPopups() {
if (!document.getElementsByTagName) return false;

var links = document.getElementsByTagName(„a“);

for (var i=0; i < links.length; i++) {


if (links[i].className.match(„simply_extern“)) {
links[i].onclick = function() {
window.open(this.getAttribute(„href“));
return false;
}
}
}
}
window.onload = simplyPopups;

Mambots > Site Mambots > Simply Links. After the document loaded, the
PopUp DOM JavaScript looks for the anchor tags with the css class simply_extern.

You might also like