PDA

View Full Version : Moved Windows



kn1gu4
28-07-2015, 10:44 PM
Hi, i want ask why when i add match predict windows are moved ?

http://ctrlv.cz/shots/2015/07/28/U3Ss.png

kostas
29-07-2015, 09:44 AM
It seems that your website overiding the input style so it display like block , and the rest of the fields go under it.

add in CSS file
<joomla site>/components/com_multileague/assets/css/styles.css


.multileague-table-matches input[type='number'], .multileague-table-matches input[type='text']{
display:inline-block!important;
}

kn1gu4
29-07-2015, 12:38 PM
Thx, but it is still the name of the home team a bit further 2

kostas
29-07-2015, 04:39 PM
It seems your template overide the css again for the table

add this line of code



.multileague-table-matches{
text-align:center!important;
}


this line actually exists without the !important, so you can edit the previous rule for better performance it should be at the same file near the link 151

this line of code may cancel the right and left align of the home and away columns.


to fix it add the !important to (lines 191,188)


.multileague-table-matches .mlt-home{
text-align: right!important;
}
.multileague-table-matches .mlt-away {
text-align: left!important;

}

kn1gu4
29-07-2015, 09:06 PM
Ok it works, thx, but i want ask if i can translate component ? If yes, where ?

kostas
30-07-2015, 09:15 AM
it would be better if you could open another thread for the language issue.
You can find the lang file in <joomla directory>/language/en-GB/en-GB.com_multileague.ini
you can either change this file if you will have single language site or copy that file to your language directory e.g if the other language would be Greek the new location would be
<joomla directory>/el-GR/el-GR.com_multileague.ini