MyBB Community Forums

Full Version: Make A Border
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to make a border on a function like this border http://prntscr.com/2nl1ez
border-bottom: 3px solid #555;
border-radius: 3px;
(repeat all browser compatible radius declarations)
I don't get it, i think it's a .css code but i want to do it here see http://prntscr.com/2nl4bx so tell me that
Okay, seems you already have the style applied and I assume that style is declared as .button.

So, find the link (probably in showthread template group). This should be like:

<a href=" ....."><i class="fa fa-lock"></i>&nbsp;Close</a>

Make it:

<a href=" ....." class="button"><i class="fa fa-lock"></i>&nbsp;Close</a>

OR:

<a href=" ....."><span class="button"><i class="fa fa-lock"></i>&nbsp;Close</span></a>
Thanks, repped Toungue