Design and CSS styles
Version 4.x > Design and CSS styles > Edit text on Forum Search button View modes: 
User avatar
Member
Member
nitya.nar-gmail - 7/10/2009 2:05:22 PM
   
Edit text on Forum Search button
How will I be able to edit the default text 'Go' on button next to search input field in "Forum search box" webpart ?

Thanks in advance.

User avatar
Kentico Support
Kentico Support
kentico_radekm - 7/16/2009 8:53:59 AM
   
RE:Edit text on Forum Search button
Hello.

This value is taken from CMS.resx file in <project folder>/CMSResources/ folder. You can change its value in this file, or you can modify code-behind of CMSWebParts/Forums/ForumSearch.ascx.cs file. You can comment out this line:

btnGo.Text = ResHelper.GetString("ForumSearch.Go");

and use this one, instead of the original one: btnGo.Text = "your own text";

Best Regards,
Radek Macalik