Page 1 of 1
Borders around entries
Posted: Sun Apr 08, 2007 1:58 pm
by holysjit
Does anyone know how to get borders around entries?
Please give me the CSS code!
Thanks
Re: Borders around entries
Posted: Sun Apr 08, 2007 10:44 pm
by yellowled
holysjit wrote:Does anyone know how to get borders around entries? Please give me the CSS code!
Usually,
Code: Select all
.serendipity_Entry_Date {
border: 1px #000;
}
or something similar should do the trick. However, this may or may not depend on your actual theme, so you should probably give us a) an URL to your blog and b) a more detailed description what you want to do.
YL
Posted: Mon Apr 09, 2007 10:40 am
by holysjit
This is my website.
http://img295.imageshack.us/img295/5251/naamlooslf7.png
I want a square around the entries.
I tried to change the template.
By _Entry_Date I created a border, but now all borders are away.
PS. I changed the Carl template a bit.
Posted: Tue Apr 10, 2007 10:51 am
by garvinhicking
Hi!
We can only help you if you give us the URL to your site, not a screenshot. This is because we need to see the HTML to tell you the CSS you need.
Regards,
Garvin
Posted: Tue Apr 10, 2007 4:28 pm
by holysjit
Posted: Tue Apr 10, 2007 4:47 pm
by d_cee
Hi
if you want a border around all the entries you should add it to #content
or if it's around each individual entry you need to add
.serendipity_entry_body {
border: your border code;
}
to the style.css file
HTH
Dave
Posted: Tue Apr 10, 2007 4:52 pm
by yellowled
d_cee wrote:if you want a border around all the entries you should add it to #content or if it's around each individual entry you need to add
... and remove the border-top for .serendipity_date.
YL