Removing categories and moving date in Vigilance theme
-
I’m very new to CSS and tweaking a few things on my blog. I’d like to remove the Categories piece at the bottom right of each post and then move the date from the top of each post, placing it in the bottom right where the Categories were.
Is there a way I can make that happen?
(I already have the Custom CSS upgrade)
Thanks for your help!
The blog I need help with is: (visible only to logged in users)
-
This should do it for you.
.categories { display: none; } .post { position: relative; } .date { position: absolute; bottom: 5px; right: 0; }If you want to match the font and font size of the leave a comment link at left, let me know.
-
-
Thanks! Yes – I’d like to match the size (and color) of the comments piece if possible.
At this point, I’m going to leave the tags where they are.
-
Actually, I may go even a little smaller than the comment size with the date, to match the size of the Category text that’s currently there.
-
Then change the .date rule to what I have below.
.date { position: absolute; bottom: 5px; right: 0; font-size: 1.3em !important; color: #333333 !important; } -
Just adjust the 1.3em font-size value then. You can even go to two digits to the right of the decimal of you want such as 1.15em.
-
-
-
- The topic ‘Removing categories and moving date in Vigilance theme’ is closed to new replies.