Page 1 of 1
no date in recent entries
Posted: Fri Jul 06, 2007 2:15 am
by celect
In the recent entries sidebar plugin how do I remove the date from below the entry headline and then align the headlines to the left?
Re: no date in recent entries
Posted: Fri Jul 06, 2007 11:19 am
by garvinhicking
Hi!
You should be able to achieve this via CSS. Look at the HTML output to see which DIV-Classes are used. You can hide them via 'display: none' and align them with floating or margins.
If you give us your URL, we might be able to give you a more precise CSS for it.
Regards,
Garvin
Posted: Sat Jul 07, 2007 3:30 am
by celect
my web site is whowantsnews.com. I am not really sure what you are getting at with css, can you explain it a little more? I also wanted to know if you could add bullets before the recententries along with removing the date and aligning them left. Thanks.
Posted: Sun Jul 08, 2007 4:53 pm
by blog.brockha.us
You should add a new class entry to your themes css file:
Code: Select all
.serendipitySideBarDate{
display: none;
}
The problem is: You are not using any template related css, I only found the default serendipity.css in your html code. So you have to add this to the default css.
Posted: Sun Jul 08, 2007 9:08 pm
by celect
thankyou!