Need help in display of header of post
-
Hi All,
I am using Plane theme. I need help for couple of points.
– Do not want name of author displayed in header of post
– Want category mentioned in headerThanks in advance
AnuradhaThe blog I need help with is: (visible only to logged in users)
-
Hi Anuradha, we can hide the author from posts in Plane with CSS. Go to Customize > CSS, delete all the informational text in that window, and paste in the following to hide the author.
.entry-meta .byline { display: none; }Given the categories are in a separate div at the bottom of the content area, we can’t reliably move it up with the date and leave a comment link because we have to use position: absolute; and that breaks all relationship with the other elements in the web page, so it does not flow and more with everything else, it floats freely over the top of them. What we can do is to move the category up above the post titles with the following CSS. I’ve increased the size and boldness of the category so that it stands out a bit more. See what you think with the following.
.hentry footer .cat-links { position: absolute; top: 0; font-size: 110%; font-weight: 600; } .hentry { position: relative; } .hentry .entry-title, .hentry .entry-title a { padding-top: 30px; } -
Thank you so much! You indeed are happiness engineer :)
I understand that category cannot come in same row as date and comment.
Is there any way my category can come below title of post?Thanks
Anuradha -
Anuradha, putting the category below the title is problematic since the length of titles can be different (multiple lines) and also on narrower windows/screens, the titles can go to two lines or more and there is no way to adjust for that and make sure there is room for the category title.
-
-
- The topic ‘Need help in display of header of post’ is closed to new replies.