argh! help! can't seem to move metadata to the right

Oct 10, 2008 16:46

I have moved my icons to the right of my entries with no trouble.
However, everything I've tried to (text-aligning and floating) move the Mood & Music, Tags, and the comment links to the right is not working.
I've gone through the memories and skimmed over two years of posts. I can't find a fix. Help, please?Never mind. I had a backwards bracket ( Read more... )

page:alignment, entries:header:ornament, entries:metadata

Leave a comment

Comments 8

av8rmike October 11 2008, 15:52:23 UTC
Don't worry about not finding the answers here, I'm pretty sure no one's asked about this stuff before. To fix the fags section:
Delete "text-align: right" out of ul.asset-tags-list{} and .asset-tags{}, then add "float: right" to .asset-tags{}, i.e.:

.asset-tags {
float: right; margin-top : -8px;
}

The post ornament (the leaf) is going to be a little harder, because it's a background image. So, you'll have to mess with the right padding and background positioning on .asset-stream .asset-header{}. I can't give you exact numbers because the images keep disappearing when I try to edit the CSS. Finally, you won't be able to move the mood icon without a theme layer change.

Reply

squoctobird January 25 2009, 04:22:29 UTC
Hi! I've used this code to move the tags over to the right... what would be the code(s) be to move the rest of the metadata to the right ie: mood, music, group etc.

THANK YOU!

Reply

whitecrow0 January 26 2009, 01:58:11 UTC
This is what I have in my custom css:
ul.asset-meta-list {
text-align: right; padding: 5px;
}
ul.asset-tags-list {
text-align: right; padding: 5px;
}
.lj-currents {
text-align: right; padding: 5px;
}

(I have that before the tag code above by av8rmike.)
I hope that works for you because if it doesn't I will have no clue how to help.

Reply

squoctobird January 26 2009, 02:34:13 UTC
thank you so much!!

Reply


Leave a comment

Up