• If you are using bookmarkify and twentysixteen, there is a minor compatibility problem, in that bookmarkify relies on inheriting a default “display: inline”, where twentysixteen uses “display: block”. The following patch will fix the problem.

    diff -c bookmarkify.php~ bookmarkify.php
    *** bookmarkify.php~	Sun Sep  5 13:43:33 2010
    --- bookmarkify.php	Fri Feb  5 11:22:38 2016
    ***************
    *** 602,608 ****
      				else
      				{
      					$d.= "<a href='".$link[2]."' title='".$link[1]."' onclick='target=\"".$bookmarkifyLinkTarget."\";' rel='nofollow'>"
    ! 							. "<img src='".$iconFolder."/".$link[3]."' style='width:16px; height:16px;' alt='[".$link[0]."] ' $endTag>"
      							. "</a> ";
      				}
      			}
    --- 602,608 ----
      				else
      				{
      					$d.= "<a href='".$link[2]."' title='".$link[1]."' onclick='target=\"".$bookmarkifyLinkTarget."\";' rel='nofollow'>"
    ! 							. "<img src='".$iconFolder."/".$link[3]."' style='width:16px; height:16px; display: inline' alt='[".$link[0]."] ' $endTag>"
      							. "</a> ";
      				}
      			}

    https://www.ads-software.com/plugins/bookmarkify/

  • The topic ‘Fix for Bookmarkify and twentysixteen’ is closed to new replies.