Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author mibuthu

    (@mibuthu)

    The options to modify the display of events is very limited at the moment. More modification options are planned in future releases.

    with a couple of css lines you can make it better responsive:

    li.event {
    width: 100%;
    }
    
    .event-date {
    float: left;
    margin: 0 0em 1.5em 0;
    width: 20%;
    display: inline;
    }
    
    .event-info {
    margin: 0 0 0 1em;
    float: left;
    width: 80%;
    display: inline;
    }
    
    @media screen and (max-width:767px) {
    
    .event-date { width:98%;}
    .event-info { width:98%;}
    
    }
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Mobile Responsive?’ is closed to new replies.