• 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

CSS editing

sebii87

Chevereto Member
Hi. I'm out of idea, I'm trying to change the background color of the expendable box for uploading file and for the ''Parcourir' bouton and I can't find it in my CSS file....

yaV31.png


Where can I set the background to put it black !???

Thank you very much !!!
 
The ''Parcourir" button cannot be changed because it's built into the flash. You can however apply an image over the ''Parcourir" button 🙂
 
I don't have it to hand but just Google "how apply image over flash object" and you will see loads of tutorials.

For the box open uploadify.css and find
Code:
.uploadifyQueueItem
you can then add/edit it from there 🙂
 
Lots of people seem to ask this so here is the solution:

Open:

Code:
/content/system/js/jquery.uploadify.v2.1.4_chevereto.js

Find:

Code:
var settings = jQuery.extend({

Underneath it paste:

Code:
buttonImg       : 'content/system/js/IMAGENAME.ext',

Obviously replace IMAGENAME.ext with your image file, for example: button.png

If you don't find it working then you need to go to http://www.YOURWEBSITEURL.TLD/content/system/js/IMAGENAME.ext

You will then see the new image and it should work - failing that try clearing your cache.
 
Back
Top