XF 1.3 What's wrong here?

JamesBrown

Well-known member
I've made a notice that incorporates a the sign up now button. But it's not quite right.

Two things, it has a large white area around the button, and it also affects the top of the page, slicing off the bottom of the title. Can someone help? http://www.motorhomefun.co.uk/forum/ Thanks

notice.webp
 
Odd.

It looks like there's some sort of script which is injecting this CSS into the page:

upload_2014-7-8_14-54-52.webp

The problem, mainly, is the line-height value.

I'm not sure what's going on here or what's causing it, but to address the specific concern of the cropped title, add this code to EXTRA.css:

Code:
.mainContent .titleBar h1
{
    line-height: 1.28;
}
 
Top Bottom