MyBB Community Forums

Full Version: Member Block
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I change the member block style to make it like the image above?
The rounded border.

[attachment=16398]

Thank you.
You mean the colour?
No, the rounded border.
I think that I have to edit the global.css but what code I have to put?
http://www.css3.info/preview/rounded-border/
For more info.

This is what mine is. See if it works.

#panel {
	background: #3dd6f;
	color: #000000;
	border: 1px solid #D4D4D4;
	padding: 8px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	font-size: 11px;

All you need is the -moz and the -webkit. and the border radius. *Which just showed me a flaw in my code.*
Thats in your CSS by the way
Thank you.
Exactly what I was looking for.