Radio Streaming - 50% Lifetime Discount with purchase of any Joomla Web Radio Addon. Discount Code: STR15-Z
See Radio Streaming Plans

Results 1 to 6 of 6

Thread: Moved Windows

  1. #1
    Junior Member
    Join Date
    Jul 2015
    Posts
    3

    Moved Windows

    Hi, i want ask why when i add match predict windows are moved ?
    Code:
    http://ctrlv.cz/shots/2015/07/28/U3Ss.png

  2. #2
    Administrator
    Join Date
    Jul 2015
    Posts
    65
    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

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

  3. #3
    Junior Member
    Join Date
    Jul 2015
    Posts
    3
    Thx, but it is still the name of the home team a bit further qqZO.jpg

  4. #4
    Administrator
    Join Date
    Jul 2015
    Posts
    65
    It seems your template overide the css again for the table

    add this line of code

    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)
    Code:
    .multileague-table-matches .mlt-home{
    text-align: right!important;
    }
    .multileague-table-matches .mlt-away {
     text-align: left!important;
    
    }

  5. #5
    Junior Member
    Join Date
    Jul 2015
    Posts
    3
    Ok it works, thx, but i want ask if i can translate component ? If yes, where ?

  6. #6
    Administrator
    Join Date
    Jul 2015
    Posts
    65
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •