agiacosa

Registered
Hi Russ,

How would I change the color of just the "New Posts" button but leave the rest of the call to action buttons the current color?

Working on Bolt.

Thanks,
Art
 
Solution
This CSS is specific to the header area for the "bolt" button which I believe only the new posts uses.

Code:
.p-body-header a.button.button--icon.button--icon--bolt {
    background: #000;
    border-color: #CCC;
    color: #FFF;
}

You may need to add some hover CSS as well:

Code:
.p-body-header a.button.button--icon.button--icon--bolt {
    background: #000;
    border-color: #CCC;
    color: #FFF;
&:hover
{
    background: #FFF;
    border-color: #CCC;
    color: #000;
}
}
This CSS is specific to the header area for the "bolt" button which I believe only the new posts uses.

Code:
.p-body-header a.button.button--icon.button--icon--bolt {
    background: #000;
    border-color: #CCC;
    color: #FFF;
}

You may need to add some hover CSS as well:

Code:
.p-body-header a.button.button--icon.button--icon--bolt {
    background: #000;
    border-color: #CCC;
    color: #FFF;
&:hover
{
    background: #FFF;
    border-color: #CCC;
    color: #000;
}
}
 
Solution

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back