Page 1 of 1
Templalte Help
Posted: Fri May 04, 2007 7:03 pm
by DMotel
Not sure if this is off topic (is a "theme" a template?)
But does anyone know how I can tighten the space between the the title of the entry and the content of the entry:
http://damncheapwebsites.com/serendipity/
Thanks!
Posted: Fri May 04, 2007 8:11 pm
by Harald Weingaertner
Find the stylesheet file of your template (stylesheet.css?), go to line 143 and change this
.serendipity_entry (line 143)
{
padding-top: 15px;
padding-right: 15px;
padding-bottom: 5px;
padding-left: 0px;
color: #444444;
font-size: 14px;
}
to this
{
padding-top: 0px;
padding-right: 15px;
padding-bottom: 5px;
padding-left: 0px;
color: #444444;
font-size: 14px;
}
and see what happens..
Posted: Sun May 06, 2007 2:29 am
by DMotel
Yes I tried that first but it didn't do a thing. Any other thoughts greatly appreciated. I guess I could just switch to another template but I like this one a lot.
Posted: Sun May 06, 2007 12:13 pm
by d_cee
Hi
try replacing the .serendipity_entry class with this code
Code: Select all
.serendipity_entry {
margin-top: -10px;
padding: 0px 15px 5px 0px;
color: #444;
font-size: 12px;
}
HTH
Dave