Fixed  Status post button needs a top margin for consistency

Shadab

Well-known member
On the profile page, the div containing the post button has a top margin of 5px.
Code:
.profilePage .profilePoster .submitUnit {
	margin-top: 5px;
	text-align: right;
}
profilePage_submitUnit.webp

But for a similar post button in the <My Username> dropdown menu,
theres no such margin; making it look cramped.
Rich (BB code):
#AccountMenu .statusPoster .submitUnit {
	display: none;
	text-align: right;
}
AccountMenu_submitUnit.webp

Please add a margin-top: 5px; to make it consistent with it's profile page counterpart.
End result:

AccountMenu_submitUnit_new.webp
 
92f01c0e160040d9aeb972e.png


It's fine for me in Chrome.
 
I was explaining to ---MAD--- why the corners aren't rounded in IE8.
I know. :)

I was sort-of joking (sorry!) that -moz-border-radius won't ever be implemented by IE, since it's a vendor specific CSS attribute (-moz- denotes Mozilla based browsers including Firefox). And if IE would support this css property, it would do via it's own -ms- prefix or directly supporting the border-radius property.
 
If you wanted IE to have rounded corners you can use some JavaScript. I, personally, don't think it's worth the extra JS just so IE gets a few rounded corners.
 
Top Bottom