Tagged: , ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #582797

    i try to give every link with new window (these are all my external links) or every mailto link an icon in front of the link.
    here we go:

    you can select those links via attribut. f.e. you want an acrobat icon before every pdf link ( unfortunately entypo-fontello haven’t one) so i uploaded an extra icon font for those icons)

    a[target="_blank"]:before {
        content: "\e822";
        font-family: entypo-fontello;
        font-size: 14px;
        padding-right: 6px;
    }
    
    a[href$=".pdf"]:before{
        content: "\e809" !important;
        font-family: paragraph;
        font-size: 14px;
        padding-right: 6px;
    }
    
    a[href^="mailto"]:before{
        content: "\e805" !important;
        font-family: entypo-fontello;
        font-size: 18px;
        padding-right: 6px;
        position: relative;
        top: 1px;
    }

    etc. pp

    #583764

    Hey Guenter!

    Thanks for sharing your tips here :)
    We really appreciate it!

    Best regards,
    Vinay Kashyap

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