Make A Border - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Community Archive (https://community.mybb.com/forum-106.html) +--- Forum: Archived Forums (https://community.mybb.com/forum-143.html) +---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html) +----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html) +------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html) +------ Thread: Make A Border (/thread-150493.html) |
Make A Border - Whoaranki - 2014-01-29 How to make a border on a function like this border http://prntscr.com/2nl1ez RE: Make A Border - effone - 2014-01-29 border-bottom: 3px solid #555; border-radius: 3px; (repeat all browser compatible radius declarations) RE: Make A Border - Whoaranki - 2014-01-29 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 RE: Make A Border - effone - 2014-01-29 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> Close</a> Make it: <a href=" ....." class="button"><i class="fa fa-lock"></i> Close</a> OR: <a href=" ....."><span class="button"><i class="fa fa-lock"></i> Close</span></a> RE: Make A Border - Whoaranki - 2014-01-29 Thanks, repped |