Customizing Cute Chat

Last post 11-10-2004, 11:04 AM by Adam. 4 replies.
Sort Posts: Previous Next
  •  11-09-2004, 10:02 AM 2345

    Customizing Cute Chat

    Hello,

     
    I need to know how can I change the look and feel of the chat interface, include your own banners, change font or background colors, remove banners, labels, include company logo and etc....
     
    Thanks
  •  11-09-2004, 10:39 AM 2346 in reply to 2345

    Re: Customizing Cute Chat

    Helen,

     
    The Cute Chat is totally customizable.
     
    For example:
     
    To change the logo:
     
    You need to modify the following LogoUrl property in your web.config:
     
    LogoUrl="images/logo.gif"
     
    To change the top banner:
     
    You need to modify the advertising/Topads.ascx file.
     
    Right now it only contains the following code:
     
    <%@ Control Language="c#" %>

    <img src="images/cutechat_banner.jpg" border="0" alt="" />
     
    Hope it helps.
     
    Let me know if you have any further questions.
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  11-10-2004, 4:54 AM 2362 in reply to 2346

    Re: Customizing Cute Chat

    Hi Adam,

     
    Thanks for your answer, but I am quite confused
     
    I am installing cute chat , as Sharepoint portal server Web Part, and de folder CutechatSample, that de set up file create, has one web.config, and it has also another folder CuteChat that has another Web.Config.
     
    I tried to change there de logoUrl, but it doesn´t work.
     
    I want to change the background color too.
     
    If you can detail me where must i do the changes i will be really thankful.
     
    Thanks again.
     
  •  11-10-2004, 10:55 AM 2368 in reply to 2362

    Re: Customizing Cute Chat

    Helen,

     
    The web.config file in the CuteChatSample:
     
     

    <cuteChat

        ConnectionString="server=(local)\portal;trusted_connection=true;database=CuteChatSample;"

        WebFilePath="~/CuteChat/"

        IPAddressPolicy="*"

        BadWords=","

        AllowAnonymous="Default"

        LoginUrl="~/Login.Aspx"

        HelpUrl=http://www.cutesoft.net/

        LogoUrl="images/logo.gif"

        ExitUrl="~/" Culture="en-us" UpdateMessageInterval="1000" UpdateOnlineInterval="20000" GuestNamePattern="^[0-9a-zA-Z\u0100-\uFFFF _\.\-]{2,20}$" ShowRoomList="True">

    <mail server="smtp.temp.org" username="[email protected]" password="abc123" defaultEmail="[email protected]" />

    <skins defaultFolder="Normal">

    <skin text="Normal" folder="Normal" />

    <skin text="MSN" folder="MSN" />

    <skin text="Mac Blue" folder="MacBlue" />

    <skin text="Mac White" folder="MacWhite" />

    <skin text="XP Royale" folder="Royale" />

    </skins>

    <providers defaultProvider="Sample">

    <provider name="Sample" sqlDataProviderType="CuteChatSample.MySqlDataProvider,CuteChatSample" />

    <provider name="Test" sqlDataProviderType="CuteChatWeb.CustomSqlDataProvider,CuteChatWeb" />

    <provider name="DotNetNuke" sqlDataProviderType="CuteChat.DotNetNukeLib.DotNetNukeSqlDataProvider,CuteChat.DotNetNukeLib" userIdentityAdapterType="CuteChat.DotNetNukeLib.SqlServerUserIdentityAdapter,CuteChat.DotNetNukeLib" />

    <provider name="Rainbow" sqlDataProviderType="CuteChat.RainbowLib.RainbowSqlDataProvider,CuteChat.RainbowLib" userIdentityAdapterType="CuteChat.RainbowLib.SqlServerUserIdentityAdapter,CuteChat.RainbowLib" />

    <provider name="IBuySpy" sqlDataProviderType="CuteChat.IBuySpyLib.IBuySpySqlDataProvider,CuteChat.IBuySpyLib" userIdentityAdapterType="CuteChat.IBuySpyLib.SqlServerUserIdentityAdapter,CuteChat.IBuySpyLib" />

    <provider name="AspNetForums" sqlDataProviderType="CuteChat.AspNetForumsLib.AspNetForumsSqlDataProvider,CuteChat.AspNetForumsLib" userIdentityAdapterType="CuteChat.AspNetForumsLib.SqlServerUserIdentityAdapter,CuteChat.AspNetForumsLibA />

    <provider name="AspNetForums2" sqlDataProviderType="CuteChat.AspNetForums2Lib.AspNetForums2SqlDataProvider,CuteChat.AspNetForums2Lib" userIdentityAdapterType="CuteChat.AspNetForums2Lib.SqlServerUserIdentityAdapter,CuteChat.AspNetForums2Lib" />

    <provider name="SharePoint" sqlDataProviderType="CuteChat.SPLib.SharePointSqlDataProvider,CuteChat.SPLib" userIdentityAdapterType="CuteChat.SPLib.SharePointUserIdentityAdapter,CuteChat.SPLib" />

    </providers>

    </cuteChat>


    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  11-10-2004, 11:04 AM 2369 in reply to 2368

    Re: Customizing Cute Chat

    Helen,

     
    The last answer is quite long. So I answer your second question here:
     
    >>. How to change the background.
     
    Please open the chat.css file. You can find it at ~/cutechat folder.
     
    You can find the following class.
     

    body.chatroom

    {

    }
     
    To set the background color:
     

    body.chatroom

    {

        background-color: yellow
    }
     
    Hope it helps.
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View as RSS news feed in XML