Ali
Ali

Reputation: 10473

CSS not display the content correctly

I'm trying to create a social widget for my own blog, but I don't know why when I have everything valid, I mean no syntax error and is not displaying it on my blog correctly?

The code is very long, and I don't think I should include it here?

So I did include the code here http://jsfiddle.net/naKEv/

I'm trying to make it similar to this

enter image description here

but mine when it displays on my blog is not showing it right.

I'm also using css sprices to combine the pictures, but that is not a problem I guess because if I'm using a table to create the code it still display but not the way it suppose to be.

Upvotes: 0

Views: 61

Answers (2)

sandeep
sandeep

Reputation: 92863

Please check your TAG's check this:

<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></span></a>
        </th>

Your </th>, </span> & </a> are close but not start check.

Upvotes: 1

Starx
Starx

Reputation: 79069

You have fixed the height of #share_icons remove that.

Demo

Upvotes: 2

Related Questions