• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

The big red upload button and gradient background

mydive

Chevereto Member
Hi,

Two questions - I've gone through all the css scripts i can find to change the colour of the big red upload button. I want to make it transparent - can't seem to... any ideas where to go?

secondly - is there any reason why I couldn't use an image instead of the gradient background where the upload button is? it's commented in the notes saying that important to set image to none - why's that?

thanks

Blackie
 
/lib/Peafowl/peafowl.css

Code:
.btn.red, .btn.red.off:hover

.btn.red:hover

Actually those selectors will change all the red buttons. What you need is:
Code:
#home .btn.red

Or edit the html:
HTML:
<a data-trigger="anywhere-upload-input" class="btn btn-big red">

For the background just change #home.

Easies way is injecting this code in Dashboard > Settings > Theme or at app/themes/Peafowl/custom_hooks
 
Back
Top