How do I remove Author and Date from each section of my Portfolio?
-
How do I remove Author and Date from each section of my Portfolio? Thx!
I’m a newbie so I can’t do it through html/css.The blog I need help with is: (visible only to logged in users)
-
Hi Angela,
Since you’ve switched over to the Illustratr theme, you won’t see the author and date listed in your portfolio. (Each theme is designed a little differently in that sense, and Illustratr leaves those out.) You should be all set with this, but let me know if you still have questions about it!
If you’re up for learning a little CSS, we have some tips for getting started:
CSS gives you a lot of options for customizing your theme beyond what’s built in to WordPress.com and theme options. And if you have CSS questions, our expert staff and volunteers can offer guidance in the CSS Customization forum:
https://en.forums.wordpress.com/forum/css-customization
If you’d like to customize your site with CSS but you’d rather not deal with the code yourself, you can also get help here: Request Theme Customization
Please let me know if you have any questions about that. :)
-
Hi Rachel! I was trying to remove the author/date – long story short, I’m back to the theme I want, and still don’t know how to remove the author/date. Please help! You’re awesome! Thanks!
-
Hi Angela,
Sure thing! The Hatch theme uses the .entry-date class selector to control the date and the .byline class selector to control the author. (If the term “class selector” sounds cryptic, our CSS Basics page has an introduction to selectors and classes.)
You can use this CSS to make those parts of the theme not display:
.single .entry-date, .single .byline { display: none; }To add custom CSS, go to your My Blogs page and click the Customize link under the blog’s title. In the Customizer, open the CSS section and in the CSS editor there, you can paste in the CSS above.
Let me know how that goes! If you have other customizations you’d like to make with CSS, I’d recommend posting them in our CSS Customization forum (where the real CSS experts hang out):
-
-
- The topic ‘How do I remove Author and Date from each section of my Portfolio?’ is closed to new replies.