• Hi, I’m having problems with layout of the table where you enter the pool predictions. Currently it’s not adjusting widths for mobile viewing. How can I edit it? Do I need to add custom CSS to theme or create a hook? Any help would be greatly appreciated!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author AntoineH

    (@antoineh)

    Depends a bit on your theme, but I think you can get a long way with just CSS. Only if you also have to adjust the HTML, you can overwrite the template via a hook.

    I wa shaving same problem for mobile view .
    Use this in css
    @media only screen and (max-width: 768px)
    .classXXXX {
    XXX
    XXX
    }

    classXXX is class name
    and XXX XXX are desired height, width or other adjustment setting

    Thread Starter pjweb

    (@pjweb)

    Thanks for reply. @fplnepal would the class for table where predictions are entered be table.match_row_template?

    Plugin Author AntoineH

    (@antoineh)

    The CSS selector for the prediction table is: table.matchinfo.input

    Thread Starter pjweb

    (@pjweb)

    Perfect, Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Pool Page Layout (Submit Predictions)’ is closed to new replies.