Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Need Help On Hover Link Not Working

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #204268
    wolfgang1983
    Participant

    On my demo table I have 2 sample users.

    On the right side of table is a edit section where should be able to click on button when hover.

    I have tried to add font awesome with :hover on my css.

    But will not work.

    How can I make it so when I hover over to a table row that it will show my icon.

    http://codepen.io/riwakawebsitedesigns/pen/oXpBZv

    #204270
    Mottie
    Member

    Try using this selector instead:

    tr:hover a.dashboard-user:after {
        font-family: FontAwesome;
        content: "f044";
        font-size: 14px;
    }
    
    #204273
    wolfgang1983
    Participant

    Thank you working.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.