Removing the text 'category archives' from the title in Retro-fitted theme
-
I’ve tried loads of different CSS codes and fixes from searching posts on the forum to try and remove the words ‘Category Archives’ from the titles of my blog posts – none of them seem to work for the ‘Retro-fitted’ theme I’m using.
Can anyone help?
ThanksThe blog I need help with is: (visible only to logged in users)
-
This CSS should hide the ‘Category Archives’ text but not the category title itself:
body.category h1.loop-title { position: relative; left: -9999px; } body.category h1.loop-title .single-category-title { position: relative; left: 9750px; } -
Selector overkill… Simpler solution:
.category .loop-title { font-size: 0; } .category .loop-title span { font-size: 24px; } -
-
-
-
justpi – that one works too – and simpler
Thank you both very much – I was flummoxed and it’s so simple with the right code!
Much appreciated
:-)
- The topic ‘Removing the text 'category archives' from the title in Retro-fitted theme’ is closed to new replies.