Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Aaron D. Campbell

    (@aaroncampbell)

    Can you give me more information such as a link to where this is happening?

    Thread Starter pgmr99

    (@pgmr99)

    http://www.livinginpike.com

    The feed is on the right hand side. Last tweet is the only ReplyRetweetFavorite text link that works. The rest look like links but don’t work.

    Plugin Author Aaron D. Campbell

    (@aaroncampbell)

    The problem isn’t the links, the problem is that you have a top padding set on .entry-content that is causing it to cover up those links if there’s a tweet below it. Adding this CSS rule will fix it:

    .widget_twitter .entry-content {
    padding:0;
    }

    You could also use something like this to spread those links apart a bit:

    .widget_twitter .intent-meta a:not(:first-of-type){
    padding-left:.5em;
    }

    Thread Starter pgmr99

    (@pgmr99)

    That worked!!!
    Thank you very much.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Twitter Widget Pro] Intents are not links’ is closed to new replies.