Skip to main content

Customizing color for a single Support Nav button.

It is common practice to make a Donate button stand out by giving it a different color on a web site.  Is there an easy way to customize the color on just one of the supporter nav buttons?

Official response from

The supporter nav buttons are designed for this purpose, as they usually stand out more than anything else on the site. However, if you have a custom theme, you can edit either layout.html or _nav.html and use CSS to float a donation link or button to the right of your nav. You can then use CSS to style it however you would like.

To change the color of just one button, change the div which surrounds it from “submit_link_huge” to something unique like “donate_button_red” and then copy the following code to your theme.scss file, changing the color hex code to whatever color you want (this will make it red): 

.donate_button_red a {
@include fancy-button-structure(1.3em, 3px, 1px); 
@include fancy-button-colors(#d60101, darken(#d60101, 5), darken(#d60101, 10)); 
width: 100%;
padding-right: 0px;
padding-left: 0px;
text-align: center;
line-height: 2.4em;
&:hover { text-decoration: none; color: white; } }

Share this post

Showing 18 reactions

How would you tag this suggestion?
Please check your e-mail for a link to activate your account.