Hi, I desperately need to be able to put the buttons.....

that I created on this page www.mafrazier.com (the nice green ones I created in BB) into the sidebar of an inside page like this: http://mafrazier.com/roll-off-dumpsters/

The existing buttons on the sidebar page were created in a separate button program long ago. Functional, but they do not match the nice opnes I created in BB.

Is there any way to get the buttons over there, and of course vertically spaced?

Thanks, Dave

Hey Dave,

We can’t use a BB module in widgets but we can copy the button’s CSS to apply it to the buttons you’ve added in the sidebar widget. Try adding this CSS snippet in and see if it helps.

a.coolbut {
    font-size: 16px;
    line-height: 18px;
    padding: 12px 24px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background: #279a27;
    border: 1px solid #1b8e1b;
    background: -moz-linear-gradient(top,#45b845 0%, #279a27 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45b845), color-stop(100%,#279a27));
    background: -webkit-linear-gradient(top,#45b845 0%,#279a27 100%);
    background: -o-linear-gradient(top,#45b845 0%,#279a27 100%);
    background: -ms-linear-gradient(top,#45b845 0%,#279a27 100%);
    background: linear-gradient(to bottom,#45b845 0%,#279a27 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45b845', endColorstr='#279a27',GradientType=0 );
    color: white;
    text-shadow: none;
    font-weight: normal;
}

Jun