a few changes are needed in the style.css:
first remove the ‘display:none’ to make the title visible; then introduce a negative ‘margin-top’ to pull the title above the header (also change ‘height:100px’ to ‘height:250px’ to adjust the position of the description):
i.e. from:
h1 {display:none;
margin:0px;
padding-left: 0px;
height: 100px;
font: bold 36px/100% "Trebuchet MS", Tahoma, Arial;
color: #262626;
}
to this:
h1 { margin:0px; margin-top:-100px;
padding-left: 0px;
height: 250px;
font: bold 36px/100% "Trebuchet MS", Tahoma, Arial;
color: #262626;
}
next step – to move the header down, insert a ‘padding-top:50px’:
#header {
width: 950px;
height: 350px;
padding-top:50px;
position: relative;
border:none;
}
then readjust the navigation:
change from ‘top:-27px’ to ‘top:17px’:
#nav {
list-style: none;
margin: 0px;
position: absolute;
right: 5px;
top: 17px;
}
Can i just copy and paste what you’ve done then?
I tried it but it hasn’t work. Any ideas?
just checked your site, and you seem to have found a solution – well done 😉
Thank you! Just did a little poking around after your advice. Any tips on taking the date of a single post?