I just changed my layout tonight to one by
gawariel_design.
My problem is I am trying to move my tags to below my mood, music, location and the mood icon to the left of the mood text.
Here is my stylesheet
Stylesheet for Sweeney Todd layout Here is the code I have.
Metada code When I use that code I keep getting an error saying there is no bracket
(
Read more... )
Comments 9
Reply
Reply
Reply
Reply
(The comment has been removed)
Reply
print $metaopen + $tags + $location + $mood + $music + $metaclose;
-- when it should look like this --
print $metaopen + $tags + $location + $mood + $music + $metaclose;
}
-- If you'll look up at the very beginning, there's a bracket here --
function Entry::print_metadata() {
-- that hasn't been closed in the code you posted; it's the one that completes the entire section for print_metadata. You must have just missed that one when you copy-pasted the code from the original post.
Add that curly-bracket to the end of the metadata code, then you should be free to edit the order of metadata as you want them. Just make sure of a few things:
1. You have this somewhere before you add the print_metadata code: set tags_aware = true;
2. You have set the mood icon to show up on the left (in the middle of your code, find var bool moodiconaftertext = true; and change it to var bool moodiconaftertext = false;3. That you've put your ( ... )
Reply
Reply
Anyway, just add another } to the end of your code, take out the ) following $metaclose; (that was a copy-paste error), and you should work. (I tested it this time by creating a theme layer myself using what you've given instead of just eyeballing it, which I should've done in the first place, sorry.)
If that doesn't work then I'm stymied, because it's working for me.
Reply
Thank you.
Reply
Leave a comment