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

Set width and height of RadToolTip via CSS

1 Answer 177 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Tom
Top achievements
Rank 1
Tom asked on 28 Jun 2010, 08:51 PM
Hi,

Is there an easy way to create a CSS style to set the width and height of a RadToolTip?

Currently I am setting them as part of the declaration (see below) of the RadToolTip, but would like to make it easier to maintain with a single style.

<

 

telerik:RadToolTip Title="Help" runat="server" ID="RadToolTipPassword" HideEvent="ManualClose"

 

 

ShowEvent="OnClick" TargetControlID="imgPassword" IsClientID="false" Width="150" Height="300" />

 



Thanks,

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 29 Jun 2010, 10:52 AM
Hi Tom,

Here is the CSS to modify the width and height properties of RadToolTootip.

Style:
 
    <style type="text/css"
        div.RadToolTip table.rtWrapper td.rtWrapperContent 
        { 
            width500px !important; 
            height200px !important; 
        } 
    </style> 


-Shinu.
Tags
ToolTip
Asked by
Tom
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or