Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1432355

    Hello,

    On the page https://vietnamazing.eu/ the point “Bekome a Member” should be emphasized in the subnavigation. So either in color or as a button. Is that even possible? If so, how do you do that?

    Best regards,
    Martin

    #1432357

    try ( if you do not like animation eliminate that part )

    #avia2-menu #menu-item-4542 {
      color: #cc0033 !important;
      font-size: 1rem;
      animation: pound 3s infinite alternate;
    }
    
    @keyframes pound {
      to { transform:scale(1.1) }
    }
    #1432372

    Hi,

    Thanks for helping out @guenni007. Did you try that out @martin?

    Best regards,
    Rikard

    #1432386

    Hallo Guenni,

    es funktioniert, aber ich verstehe es nicht. Würde ich aber gern, denn ich habe es bei einer anderen Seite eingefügt und da ging es nicht. Wo steht, das der zweite Punkt betonte werden soll? Hat das mit der 4542 zu tun?

    #1432411

    ja – die menu items erhalten eine eindeutige ID. Da musst du also mittels der Developer Tools rausfinden was der Menupunkt bekommen hat.
    Du kannst aber auch mittels “abzählen” den Selector spezifizieren.

    #avia2-menu .menu-item:nth-of-type(2) {
      color: #cc0033 !important;
      font-size: 1.5rem;
      animation: pound 3s infinite alternate;
    }
    #1432735

    Vielen Dank, wieder was gelernt

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.