This is a migrated thread and some comments may be shown as answers.

Hiding text from the design, html & preview buttons in RadEditor

1 Answer 153 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Laredo
Top achievements
Rank 1
Laredo asked on 31 Dec 2010, 10:49 AM
Hi,

I'm currently upgrading our application to support the Ajax editor. I'd like to hide the above mentioned button text. I just want to see their icons with tooltips. How would I do this?

Regards,
Laredo

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 31 Dec 2010, 11:38 AM
Hi Laredo,

You can use the following classes to hide the Design, HTML and Preview modes buttons:

<style type="text/css">
    .reEditorModes a
    {
        width: 26px !important;
        overflow: hidden;
        border: solid 1px #ececec;
    }
    
    .reEditorModes a span
    {
        text-indent: -9999px;
    }
    
    a.reMode_selected
    {
        border: solid 1px #828282;
        background: none #cecece !important;
    }
    </style>



Best wishes,
Rumen
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Editor
Asked by
Laredo
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or