XF 1.2 Any idea how to make post/message look like this ?

touch

Member
I just see xenforo forum with this kind of post / message style

how.png


I think it's look very nice and clean, any idea how to do it ? or maybe add on for this purpose ?
The link is here .. I think I saw this xenforo forum somewhere here, but I can't recall in what thread :confused:
 
Not much difficult :)

Add the code in extra.css -

Code:
.messageList .message {
box-shadow: 0 2px 5px #808080;
-moz-box-shadow: 0 2px 5px #808080;
-webkit-box-shadow: 0 2px 5px #808080;
margin-bottom: 20px;
padding: 20px;
}
 
Top Bottom