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

    (@thaikolja)

    You can make the secondary title invisible for mobile users via CSS media queries. Just put the secondary title in an element, give it a class (for example secondary-title) and do something like this in your style.css:

    @media screen and (max-width: 480px) {
        .secondary-title {
            display: none !important;
        }
    }

    I don’t know Google AMP. I have to look into that first before I can give any answers to that.

Viewing 1 replies (of 1 total)

The topic ‘Goog AMP’ is closed to new replies.