• 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

Why is this?

http://rapidimg.net

Uploading multiple images, you can't see the images, the drop down part i mean, it's hidden partially.

Also, i can't change short url service, it stays as tinyurl all the time.

Also, clicking upload doesn't show the error but you can see the page bounce slightly.
 
That is because your CSS s wrong. Peafowl theme uses the calculated height of the <a> tag to do the "display-rows" thing. Since you haven't update the CSS for the system the height is just 28px (the paddings). You need to change the CSS to match Peafowl:

Code:
#uploaded_list {
    overflow: auto;
}
#uploaded_list a {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #DBDBDB;
    border-radius: 3px 3px 3px 3px;
    display: inline-block;
    margin: 5px;
    padding: 5px;
}
#uploaded_list a.active {
    background: url("./theme-img/current_uploaded_bkg.png") repeat-x scroll 0 0 #4C8FC2 !important;
    border: 1px solid #4C8FC2 !important;
}
 
Back
Top