html help (for tumblr)?

twiendee

New member
so below is the code (without the stars) i have right now for a certain part of the html. its for picture posts, and i somehow played around with it and made it so the caption is under the picture and the permalink is on the left. the block:IndexPage display:none part is what makes it (the caption and the permalink) invisible until i hover on it. but i want the caption to always be visible, and just the permalink to be invisible until i hover on it... but i dont know how to do that. the last line, with div.right, is the code for the caption.

div.posts div.post div.photo div.permalink { {block:IndexPage} * display:none;{/block:IndexPage} }
div.posts div.post:hover div.photo div.permalink { display:block; }
div.posts div.post div.photo div.permalink a { border-bottom:0px; }
div.posts div.post div.photo div.permalink div.left { position:absolute; width:150px; height:140px; z-index:10; background: rgba * (255, 255, 255, 0.80); padding:5px; top:-5px; left:-173px; }
div.posts div.post div.photo div.permalink div.right { width:500px; padding:5px; max-height:228px; overflow:auto; }
 
Back
Top