Forums

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

Home Forums CSS exception to external link icon

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #33559
    phipm1
    Member

    I currently have an external link icon put after each link created. I do not want an external link icon on Google links

    /* CSS Code */

    a[href^=”http:”]
    {
    display:inline-block;
    padding-right:14px;
    background:transparent url(=”extlink.gif) no-repeat 100% 0;
    padding: 0 20px 0 0
    }

    a[href^=”http:”] :hover:after { content: ” > ” attr (title);

    a[href*=”google”]{
    background-image:none;
    }
    a[href*=”google”] :hover:after { content: ” “; }

    I have also tried

    a[href*=”http://google”%5D{

    this doesn’t work either.

    Anyone have any ideas?

    #83709
    phipm1
    Member

    I figured it out on my own.

    Thx for you help

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