no date in recent entries
no date in recent entries
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?
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: no date in recent entries
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
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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
blog.brockha.us
- Regular
- Posts: 695
- Joined: Tue Jul 03, 2007 3:34 am
- Location: Berlin, Germany
- Contact:
You should add a new class entry to your themes css file:
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.
Code: Select all
.serendipitySideBarDate{
display: none;
}