Just one last quick question … adding the line-height to the CSS sorted that, but the banner region background colour was the same as the site background. So I added
.banner {
line-height: 1.6;
background: #ffffff;
This gave me a white background but it spans the whole width of the page. I tried
.banner {
line-height: 1.6;
background: #ffffff;
display: inline-block;
}
This sorts out the background colour but now the whole block aligns to the left! Am I missing something obvious?
Rob