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; }
Comments
Post a Comment