Templalte Help

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
DMotel
Regular
Posts: 67
Joined: Fri Apr 21, 2006 8:49 pm

Templalte Help

Post 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!
Harald Weingaertner
Regular
Posts: 474
Joined: Mon Mar 27, 2006 12:32 am

Post 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..
DMotel
Regular
Posts: 67
Joined: Fri Apr 21, 2006 8:49 pm

Post 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.
d_cee
Regular
Posts: 603
Joined: Wed Jan 18, 2006 6:32 pm
Location: UK
Contact:

Post 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
Post Reply