search box

This is an open forum for any mojoPortal topics that don't fall into the other categories.

This thread is closed to new posts. You must sign in to post in the forums.
5/19/2010 3:17:43 AM
Gravatar
Total Posts 1

search box

is there a wayto get search box on the left or right side of my mojoportal pages?

5/27/2010 11:28:54 AM
Gravatar
Total Posts 2239

Re: search box

Hi,

Sorry for the delayed response. Sometimes we miss a post....
 

If you want to include a search box on your site, you can put the <portal:SearchInput control in the layout.master file of your skin.

Example if you wanted to include it on the left side of your site. The bolded text is all you need to add, the other text is just shown to demonstrate where you need to add the SearchInput control:

<asp:Panel id="divLeft" runat="server" cssclass="leftside" visible="True" SkinID="pnlPlain">
<portal:SearchInput id="SearchInput2" LinkOnly="false" RenderAsListItem="false" runat="server" />
<portal:PageMenu id="PageMenu1" runat="server" UseTreeView="true" TreeViewShowExpandCollapse="true" />
<a id="startcontent"></a>
<asp:contentplaceholder ID="leftContent" runat="server"></asp:contentplaceholder>
</asp:Panel>

 

HTH,
Joe D.

You must sign in to post in the forums. This thread is closed to new posts.