• 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.

Dutch (NL) Layout problem

BMWracing

Chevereto Member
Hi guys,

The default layout of the dutch translation is broken. The select files button is not aligned correctly.
See the image below (I already tried making the text shorter)

layoutissue01.png


Anybody know which part is causing this and what to change/shorten? Thanks

I have tried changing the "selecteer" , "selecteer afbeeldingen die u wilt uploaden" , "Afbeeldingsgrootte wijzigen" and "afmetingen aanpassen".

All have no effect on the layout (even if I make it one character).
 
The problem is quite easy,
The text is too long for the button, so their is 2 options, editing the theme to allow longer buttons...
OR the easiest way, change the text of the button

Open the chevereto_lang file found into the content/languages/nl/ folder

FIND

PHP:
$lang['button_select_files'] = 'SELECTEER BESTANDEN';

Replace WITH

PHP:
$lang['button_select_files'] = 'SELECTEER';

OR

PHP:
$lang['button_select_files'] = 'BESTANDEN';
 
Thanks Danny, I tried that already and it still doesn't work (button is still not aligned and still looks like the image in the topic start)

Any idea's what's causing this?
 
I did the
PHP:
$lang['button_select_files'] = 'SELECTEER';

on the demo and seems to be working. Make sure to upload the changes.
 
Even spanish looks bad in your site. Did you changed the css file?
 
Nope, is the CSS:
Code:
#fileQueue {
    float: left;
    margin-right: 5px;
    min-height: 28px;
    width: 420px;
}

#fileQueue width should be 362px.

And this one:
Code:
#upload-container {
    margin: 0 auto;
    width: 535px;
}

#upload-container width should be 495px


Finally, this one:
Code:
.show_upload {
    min-height: 0;
    overflow: auto;
    padding: 4px;
    width: 530px;
}

.show_upload width should be 490px.

So it was css values after all. You should check this.
 
Back
Top