hi there,
i'd like to move the title of each page (not post) up infront of the background color strip (fallback-div).
i tried
#template-page .post-title {
margin-top: -20px;
display:block;
}
but with no luck.
hi there,
i'd like to move the title of each page (not post) up infront of the background color strip (fallback-div).
i tried
#template-page .post-title {
margin-top: -20px;
display:block;
}
but with no luck.
Hi Brouge,
You can try the following:
#template-page .post-title{
position: absolute;
top: -80px;
}
.content{
overflow:visible;
}
You'll also need to add the same attributes from #template-page .post-title to the other pages you want the effect on (#template-fullwidth for example).
thanks devin, this is working like a charm!
This topic has been closed to new replies.