blog script help

ssgx10mx

New Member
Messages
1
Reaction score
0
Points
0
is there any particular simple blog which i can integrate in my site (without any header information) as i have my own style of title and background.I tried wordpress but could not remove the white space left after removal of site title and description. I was using twenty eleven theme. in short i only need the blog part of the wordpress or may be any other script without the blog title. please suggest any.:(
 

jaygreentree

Member
Messages
148
Reaction score
1
Points
16
you can remove the space using css. for example the site title would might like this (replate .site-title with the id or class of your Title div):

<style type="text/css">
.site-title {
display:none;
}
</style>
 
Top