Simple Machines Community Forum

SMF Support => SMF 1.1.x Support => Topic started by: aessedai03 on March 21, 2010, 11:18:54 AM

Title: How to add a border around the text box?
Post by: aessedai03 on March 21, 2010, 11:18:54 AM
Can someone please help me add a border around the text box? I attached a screenshot of what I'm referring to. The theme I am using is Green Light v1 and the SMF version is 1.1.11. Thank you!

http://custom.simplemachines.org/themes/index.php?lemma=1182
Title: Re: How to add a border around the text box?
Post by: Mick. on March 21, 2010, 11:33:03 AM
In Themes/greenlight_v1/style.css

Open..

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea, button
{
color: #000;
font-family: verdana, sans-serif;
background: #f9f9f9 url(images/bg3.png);
border: 1px solid #fff;
padding: 2px;
}


and change:

border: 1px solid #fff;

to:

border: 1px solid #cecece;
Title: Re: How to add a border around the text box?
Post by: aessedai03 on March 21, 2010, 12:11:37 PM
It worked! Thank you! Topic has been marked as solved.
Title: Re: How to add a border around the text box?
Post by: Mick. on March 21, 2010, 12:12:34 PM
Your'e most welcome ;)