How do I remove the date from the Bueno theme?
-
I would like to remove the date from my homepage. Any help is much appreciated? My site is http://www.greenartworkshop.org
Thanks!
The blog I need help with is: (visible only to logged in users)
-
To remove the date circle from the home page only in the Bueno theme, add this to your Appearance → Custom Design → CSS editor:
.home .post .date { display: none; } -
-
-
Hi !
I don’t understand : this code doesn’t work with me ! How do I have to add this in my CSS Editor ?
-
@gwenaelbis In order to use the css editor, you must have purchased the css upgrade. You can preview how it looks however, by going to Dashboard, Appearance, Custom Design. You will see an option for CSS and a button to click to preview for free. Just add the css to the box and click preview to see how a css change would look.
-
To make it work on all your post pages, just remove the .home from the snippet that designsimply posted.
-
Thanks for your answer ! I have already purchased the CSS upgrade. I tried to add the Css to the box by that doesn’t work ! Here is my screen print : http://hpics.li/c83852b
What did I do the wrong way ?
-
I can see why you thought to do it that way, but you put your css inside the tags for comments.
The /* and */ designations are intended to surround comments in your css (so you can keep track of what you are entering). The coding would go below the */.
So if you use “comments” you would do it this way:
/* removing date from all posts*/ .home .post .date { display: none; }Using comments is a really good habit, because when you first do your css you are sure you will remember just why you did it, but later on it can start to look like a jumble. The comments help keep that from happening.
-
-
- The topic ‘How do I remove the date from the Bueno theme?’ is closed to new replies.