MyBB Community Forums

Full Version: Border around avatar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Anyone can guide me how to put border around avatar?
This what i try but do not success

<TABLE BORDER=10 BORDERCOLOR=Gray>
{$post['useravatar']}
</TABLE>

I want border like my attachment

thanks
Add a div class to the image and apply the border in the CSS.
(2009-08-25, 02:39 AM)computergeek67 Wrote: [ -> ]Add a div class to the image and apply the border in the CSS.

thanks for reply,but can you show the code,i really dont know about CSS and how to apply it.
Try something like this:
<div class="avatar">{$post['useravatar']}</div>

And for the CSS:
.avatar {
        border: 10px solid gray;
}
(2009-08-25, 07:49 PM)computergeek67 Wrote: [ -> ]Try something like this:
<div class="avatar">{$post['useravatar']}</div>

And for the CSS:
.avatar {
        border: 10px solid gray;
}

Nice Smile
computergeek67!!!Thanks you very much for your help!!! Smile
(2009-08-26, 01:24 AM)msyahrizan Wrote: [ -> ]computergeek67!!!Thanks you very much for your help!!! Smile
You're welcome Smile