remove tags / align header
-
hi!
my blog is little-city.ca. i’m working with the CSS editor, trying to figure out how to not display tags in my posts? i had them removed before when i was using chunk, but now i’m using truly minimal and the code doesn’t seem to be working.
also wondering how to move my header text (littlecity) so that it’s centered and there is less space between it and the header image. i’d also like to have the letters a wee bit more spaced out so that the horizontal width of the text matches the horizontal width of the header image.
anyone?
The blog I need help with is: (visible only to logged in users)
-
CSS is generally theme specific, so what worked in Chunk would very likely not work in Truly Minimal. To remove the tags, and leave the categories and comments link, add the following CSS.
.tags-links, .entry-meta .sep { display: none; } .comments-link:before { content: " / "; }To remove everything but the comment link (cats and tags) use the following instead.
.tags-links, .cat-.links, .entry-meta .sep { display: none; }To remove everything below the post, add the following.
.entry-meta { display: none; }
- The topic ‘remove tags / align header’ is closed to new replies.