• amcglawn

    (@amcglawn)


    I am developing my website on a LocalHost (XAMPP). The URL listed above is my site, but it currently displays the site under construction.

    I have an H3 heading to which I have linked a pop-up and I need to have a hover effect. Unfortunately, I have been unable to accomplish this. How can I set a hover effect that only applies to a specific H3 heading?

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

Viewing 1 replies (of 1 total)
  • Hi @amcglawn

    To apply hover effect you can use a class on your specific heading and then you can add hover effect using that class.

    <h3 class="popup-heading">Hover Me</h3>

    .popup-heading:hover {color: blue;}

Viewing 1 replies (of 1 total)

The topic ‘Hover Effect on H3 Heading’ is closed to new replies.