Tumblr CSS positioning -


i'm making 2 column tumblr theme , need fix weird css positioning issue i'm having. if @ picture provided can see there's gap in between 2 pictures in first column. happens when picture smaller max-width guess rest of width filled blank space. how can fix it?

code: http://pastebin.com/ey4esqkh

picture: http://i.imgur.com/z8k22cq.png

jsfiddle: http://jsfiddle.net/kqvnd

try this:

1. divide content in 2 columns this:

<div class="column">             <!-- articles --> </div>   <div class="column">             <!-- articles --> </div> 

2. add css:

.column {     display:inline-block;     vertical-align:top; } 

jsfiddle demo.


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -