I checked the blog and I see you were able to figure out how to hide the tags at the bottom of posts with this CSS:
.post-meta .row:nth-of-type(2) {
display:none;
}
Nice work!!
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
I checked the blog and I see you were able to figure out how to hide the tags at the bottom of posts with this CSS:
.post-meta .row:nth-of-type(2) {
display:none;
}
Nice work!!
I actually stopped tagging the posts so they wouldn't be visible :( You can see on the latest post that the tags are still there. Would appreciate your help!
Is there a way to get the custom permalink \%Year%\%Month%\%Day%\ working? If i use this custom permalink setting, my blog doesn't show my logo in a post?
The logo picture gets the url including postname?
Please help.
Regards, Jel
Is there a way to get the custom permalink \%Year%\%Month%\%Day%\ working? If i use this custom permalink setting, my blog doesn't show my logo in a post?
The logo picture gets the url including postname?
Please help.
Using wordpress COMET theme.
Regards, Jel
Issue logo not showing solved by my husband Frank.
The logo and sociallink icons in right sidebar didn't show when permalink is set to /%Year%/%Month%/%Day%/ .
Only on main blogpage logo and sidebar images are showing.
Solved by adding full URL to logo picture in themes and sidebar social icons img source changed to full URL i.o. picture name only.
If someone is having the same problem, this was the answer.
Regards,
Jel
Last question - how can I make tags not show up in the footer?
Ah, looks like the other example I found in your CSS was for categories. Hiding the third row (you just had the 2nd before) should hid tags as well. Try this out:
.post-meta .row:nth-of-type(3) {
display:none;
}
Note that nth-of-type is a CSS3 property and so it will only work in modern browsers, but it looks to me like that's your best option unless you want to hide the entire post-meta block.
@nailpolishheaven, WordPress.com does not offer the option to change permalinks. If you're not using WordPress.com, you should head over to http://wordpress.org/support/ to ask for help. See http://support.wordpress.com/com-vs-org/ to learn about the differences.
This topic has been closed to new replies.