Download button grey

Phoca Download - download manager
fmeneuhe
Phoca Member
Phoca Member
Posts: 14
Joined: 28 Jan 2019, 20:40

Download button grey

Post by fmeneuhe »

Hi,
I have all the "Download" button green color, but in the file details the button is grey and the button content is not visible. How can I fix that?
See attached screenshot:

https://imgur.com/rrRTO2c

Tags:
christine
Phoca Hero
Phoca Hero
Posts: 2737
Joined: 28 Nov 2010, 17:20

Re: Download button grey

Post by christine »

Hi,
would be easier to see it on live URL, because an image we can't check with inspector :-)
So, I tried on testversion temporary successfully with:

Code: Select all

input#pdlicensesubmit.pd-button-download {
 color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    background-color: #5bb75b;
    background-image: -moz-linear-gradient(top,#62c462,#51a351);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));
    background-image: -webkit-linear-gradient(top,#62c462,#51a351);
    background-image: -o-linear-gradient(top,#62c462,#51a351);
    background-image: linear-gradient(to bottom,#62c462,#51a351);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
    border-color: #51a351 #51a351 #387038;
    *background-color: #51a351;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
Try above Code (depends on your template) e.g. template.css or custom.css ...
Color changes etc. up to your choice.

Kind regards
Christine
fmeneuhe
Phoca Member
Phoca Member
Posts: 14
Joined: 28 Jan 2019, 20:40

Re: Download button grey

Post by fmeneuhe »

Thanks it worked!
christine
Phoca Hero
Phoca Hero
Posts: 2737
Joined: 28 Nov 2010, 17:20

Re: Download button grey

Post by christine »

That's fine.
Kind regards
Christine
Post Reply