• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

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