Home / Disable / Change Jump links to buttons
Duplicate Snippet

Embed Snippet on Your Site

Change Jump links to buttons

Make the "jump to recipe" and "print recipe" links look like buttons at the top of the page.

<10
Code Preview
css
.tasty-recipes-quick-links a {
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
	margin: 0 5px 5px;
}
/* Hover */
.tasty-recipes-quick-links a:hover {
	border: 1px solid #ccc;
	background-color: #ccc;
	color: #fff;
}
/* Hide the dots between buttons */
.tasty-recipes-quick-links a + span {
	display: none;
}

Comments

Add a Comment