I use this module a little differently and I love it. I move the KC Quick Icons to the Title module position (in Joomla 1.6 Bluestork).
[img]
This image is hidden for guests. Please login or register to see it.
Then, I add the following code to the template.css in Bluestork. This keeps the KC Icons visible almost all the time instead of just in the control panel. It give my clients some nice big buttons for them to easily access the most common things they use like Media, Articles, Main Menu, Modules.
I love it! Thanks Keashly B)
| Code: |
#kc_admin_quickicons_cpanel div.icon a {
border: none;
width: 78px;
height: 85px;
}
#kc_admin_quickicons_cpanel div.icon {
background-color: transparent;
margin-bottom: 0;
margin-right: 0;
}
#kc_admin_quickicons_cpanel img {
margin: 0 auto;
padding: 3px 0;
}
#kc_admin_quickicons_cpanel {
position: absolute;
width: 900px;
top: 107px;
overflow: visible;
border-left: 1px solid #ccc;
margin-left: -12px;
}
div#toolbar-box, div#element-box div.section-box {
margin-top: 100px;
}
|