Elemin Meta Data
-
-I’d like to move the post meta data that lives on the left hand side of each post to the bottom of each post, therefore opening up the width of the post space. Is this possible in CSS? I’m new to it.
Basically I’d love the ‘post’ space to look the same as the ‘page’ space.
Thank you!
The blog I need help with is: (visible only to logged in users)
-
Hi @lemaisonloup,
I hope you are well today and thank you for your question.
Could you please try using the following CSS code to move the post meta data that lives on the left hand side of each post to the bottom of each post?
div.post-content { padding-left: 0; } div.entry-meta { bottom: -50px; top: auto; width: 100%; } .entry-meta span { float: left; margin: 0 3px; } .entry-meta span.entry-tags { float: none; text-align: left; }Best Regards,
Vinod Dalvi -
Thank you so much for your help. It looks great. I just have 2 more questions:
1. I’d like to hide the meta data at the bottom of each post all together. I tried to code it, but it just ended up back in the left margin.
2. I’d like to also remove the format icon in the left margin so the title of each post is flush with the left text rather than indented.Thank you so much for your help.
-
Hi @lemaisonloup,
Thank you for your reply.
1. I’d like to hide the meta data at the bottom of each post all together. I tried to code it, but it just ended up back in the left margin.
2. I’d like to also remove the format icon in the left margin so the title of each post is flush with the left text rather than indented.To achieve this try using following code removing previous code.
div.post-content { padding-left: 0; } div.entry-meta { display: none; } h1.entry-title { margin-left: 0; } div.post-format-icon { display: none; }Cheers,
Vinod Dalvi -
-
You are most welcome, if I can be of any further assistance please don’t hesitate to ask :)
- The topic ‘Elemin Meta Data’ is closed to new replies.