Better link for export and print

Currently, when you turn on printing or exporting, you see a very small link to activate it. I would like to have something more prominent – and ideally, a button.


Hey Mark,

You can change the filters and export links with CSS. Here's my example:

.kn-filters-nav a {

background: #3498db;

background-image: -webkit-linear-gradient(top, #3498db, #2980b9);

background-image: -moz-linear-gradient(top, #3498db, #2980b9);

background-image: -ms-linear-gradient(top, #3498db, #2980b9);

background-image: -o-linear-gradient(top, #3498db, #2980b9);

background-image: linear-gradient(to bottom, #3498db, #2980b9);

-webkit-border-radius: 0;

-moz-border-radius: 0;

border-radius: 0px;

font-family: Arial;

color: #ffffff;

font-size: 13px;

padding: 5px 20px 5px 20px;

text-decoration: none;

}

.kn-filters-nav a:hover {

background: #3cb0fd;

background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);

background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);

background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);

background-image: -o-linear-gradient(top, #3cb0fd, #3498db);

background-image: linear-gradient(to bottom, #3cb0fd, #3498db);

text-decoration: none;

}