• Resolved lalalapo

    (@lalalapo)


    Hi,

    I get the title and time information in the hover block. But this information are also presented in the “normal” event information. On mobile devices I got the same information two times back-to-back. On mobile device I was able to deaktivate this with

    .title_in_hover_block {display:none;}
    .time_in_hover_block {display:none;}

    but on the desktop view these information are still avaiable. How can hide these information also on desktop view? I don’t want to show this information tow times.

    Thanks for your support:)

    The page I need help with: [log in to see the link]

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

    (@room34)

    Here’s what you would need, using the selector (and media query) from the plugin that is causing it to display:

    
    @media screen and (min-width: 783px) {
      .ics-calendar .hover_block .title_in_hover_block,
      .ics-calendar .hover_block .time_in_hover_block
      { display: none; }
    }
    

    Most browsers now have an “Inspect element” option in the contextual menu if you right-click (on Mac, Ctrl-click) on an element in the page. This will show you the exact CSS selectors that are applying each style to a given element.

    Thread Starter lalalapo

    (@lalalapo)

    Thank you:)

    I wish you a nice weekend.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Title and time in hover block’ is closed to new replies.