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!
Templalte Help
-
Harald Weingaertner
- Regular
- Posts: 474
- Joined: Mon Mar 27, 2006 12:32 am
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..
.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..
Hi
try replacing the .serendipity_entry class with this code
HTH
Dave
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;
}
Dave