Heya i`ve installed latest RC version and i`ve translated it to my language.. and here how it looks Mailbox
Can you guys resolve it ?
Heya i`ve installed latest RC version and i`ve translated it to my language.. and here how it looks Mailbox Can you guys resolve it ? |
old topic, but make a compromise and change "unopened" to "noi" or "nedesc." :) . These problems occour because of the the long words in romanian translation. |
You could also try a wider button.
.notify_message {
color:#333333;
cursor:pointer;
font-size:11px;
font-weight:normal;
width: 190px
}
https://www.deanbassett.com |
You could also try a wider button.
.notify_message {
color:#333333;
cursor:pointer;
font-size:11px;
font-weight:normal;
width: 190px
}
Yes, it would be a solution, but what would you do, if you want to have them all in a single line? An solution would be: to set the values in css so that there is not so much free space on the left and right side of the button, but how?? |
For left, right, top and bottom padding edit this in templates/base/css/common.css at about line 15.
.bx_sys_default_padding {
padding:10px;
}
padding-top:10px;
padding-bottom:10px;
padding-left:10px;
padding-right:10px;
Adjust padding how you like. Now for the spacing in between each button edit templates/base/css/common.css at about line 799 Edit This. .notify_message { background-image:url(../images/icons/notify_msg_left_bg.png); cursor:pointer; display:block; float:left; height:50px; min-width:30px; max-width:520px; padding:0 0 5px 10px; color:#333; font-size:11px; font-weight:normal; overflow:hidden; margin:0px 10px 0px 0px; position:relative; } Margin controls the spacing between the buttons and Padding controls the spacing inside the button where the icon and wording is. https://www.deanbassett.com |
YEEE; It works;
changed
padding-left:10px;
padding-right:10px;
to
padding-left:2px;
padding-right:2px;
and voila ; I can make the right translation without any design changes.
Thank you !
|