• 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

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