• on this page here:
    https://ayaandgil.co.il/%d7%9e%d7%90%d7%9e%d7%a8%d7%99%d7%9d/

    i have two page titles, for mobile and desktop,
    one title is hidden on desktop and tablets and the second is hidden only on mobile (i hide them using elementor – advanced – > responsive -> than i can choose where to hide).

    the issue is that .ecs-post-loop .elementor-page-title has a display block property which is interfere with the native elementor responsive hide and show on mobile\tablet\desktop
    and not i have the same page title twice… cause it changes the display none to block

    any fix for that?

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

Viewing 1 replies (of 1 total)
  • Plugin Author dudaster

    (@dudaster)

    You need to overwrite with stronger css. Go to Advanced tab of the title and fill the custom css like this:

    @media only screen and (max-width: 600px) {
      selector .ecs-post-loop .elementor-page-title  {
        display: none;
      }
    }
Viewing 1 replies (of 1 total)

The topic ‘[NSFW] ecs has a display block on page title – issue’ is closed to new replies.