
After one of the most intensive periods of development in Slackware’s history, the long awaited stable release of Slackware 13.0 is ready. This release brings with it many major changes since Slackware 12.2, including a completely reworked collection of X packages (a configuration file for X is no longer needed in most cases), major upgrades to the desktop environments (KDE version 4.2.4 and Xfce version 4.6.1), a new .txz package format with much better compression, and other upgrades all around — to the development system, network services, libraries, and major applications like Firefox and Thunderbird. We think you’ll agree that this version of Slackware was worth the wait. Also, this is the first release of Slackware with native support for the 64-bit x86_64 architecture! Major kudos to Eric Hameleers for all of his work, especially on the 64-bit port.
Posted 1 year ago at 11:55 am. Add a comment
(View Demo)
Zip package included JS, CSS, and icons
1. Download source files
Download the CSS dock menu zip package.
2. Insert code
In between the HTML <head> tag, add the following code
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/interface.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
<!--[if lt IE 7]>
<style type="text/css">
.dock img { behavior: url(iepngfix.htc) }
</style>
<![endif]–>
The first part is the Javascript, second part is CSS stylesheet, and last part is the PNG hack for IE 6.
3. Configuration
Don’t forget to add the following code to anywhere within the <body> tag:
<script type="text/javascript">
$(document).ready(
function()
{
$(’#dock2′).Fisheye(
{
maxWidth: 60,
items: ‘a’,
itemsText: ’span’,
container: ‘.dock-container2′,
itemWidth: 40,
proximity: 80,
alignment : ‘left’,
valign: ‘bottom’,
halign : ‘center’
}
)
}
);
</script>
4. Add or remove item
To add menu item to the top dock (note: span tag is after the img tag):
<a href="#"><img src="images/home.png" alt="home" /><span>Home</span></a>
To add menu item to the bottom dock (note: span tag is before the img tag):
<a href="#"><span>Home</span><img src="images/home.png" alt="home" /></a>
Posted 1 year, 1 month ago at 9:52 pm. Add a comment
Onur Küçük announced the official release of Pardus Linux 2009: “The international CD of Pardus 2009, containing 11 languages to choose from, is also available from FTP servers. This new release contains many bug fixes and enhancements. A new, shiny KDE 4 desktop environment, improved hardware support, latest releases of Pardus Manager tools, up-to-date software repository, and performance improvements are among the many new features of Pardus 2009. Pardus 2009 has also been improved graphically in every part of the distribution. All splash systems, from bootloader to login screen, have been revised. The latest version of Pardus contains up-to-date packages like KDE 4.2.4, Linux kernel 2.6.30.1, OpenOffice.org 3.1.0.6, Mozilla Firefox 3.5.1, GIMP 2.6.6, K3b 1.66, X.Org 1.6.2 and Python 2.6.2.” Here is the complete release announcement. Download: Pardus_2009.iso (687MB, MD5, torrent), Pardus_2009_International.iso (696MB, MD5, torrent).
Posted 1 year, 1 month ago at 11:53 am. Add a comment