Viewing 4 replies - 1 through 4 (of 4 total)
  • It’s the .self-clear class in style.css:

    /* self-clearing floats */
    .self-clear:after { /* self-clear the float */
    	content: ".";
    	display: block;
    	height: 0;
    	clear: both;
    	visibility: hidden;
    }
    * html .self-clear { /* for IE 5,6 */
    	height: 1%;
    }
    *:first-child+html .self-clear { /* for IE7 */
    	min-height: 1px;
    }

    You might want to try getting rid of self-clear in single.php:

    <div class="entry-content self-clear">

    Thread Starter dpope

    (@dpope)

    Gave that a try but it had no effect on the problem.

    Still looking for a solution. Any help would be appreciated.

    Thread Starter dpope

    (@dpope)

    bump

    Remove those classes from style.css and remember to press CTRL and F5 simultaneously when viewing the updated page. Or try emptying your browser cache. This should ensure that your web browser fetches a fresh copy of the page rather than serving up an out-dated copy from your own cache.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Image Link Not Working’ is closed to new replies.