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

RadToolTip formatting issue

2 Answers 65 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Ashish
Top achievements
Rank 1
Ashish asked on 13 Sep 2012, 09:49 AM

Hello Telerik Team,

I have used RadToolTip in my site extensively. Recently I have updated the Telerik version to “2012.2.724.35” and after that i am facing formatting issues related to RadToolTip.

Older Version we were using: 2011.1.519.35
New Version currently we are using: 2012.2.724.35

I have gone through on all release notes between the above two versions and as per the release note of “Q1 2012 (version 2012.1.215)” there is a improvement in default padding and/or margin to the content area and Tooltip title element for better UI and visualization. But these formatting improvements forced to changes the other controls position present inside the RadToolTip control since in the new Telerik version the RadToolTip captures the more padding space which minimize the actual content area where the other controls are present.

To resolve this issue I have to change many of the pages in our project but it takes huge time to do changes for all RadToolTip. Kindly suggest, is there any way to apply the older padding to RadToolTip or override the RadToolTip default padding?

Please suggest any workaround to get rid from these formatting issues.  

Thanks,
Ashish

2 Answers, 1 is accepted

Sort by
0
Jayesh Goyani
Top achievements
Rank 2
answered on 16 Sep 2012, 07:41 AM
Hello,

Put below CSS class in Your master/Theme/Page so it applied in all pages.


.RadToolTip
{
 padding:5px !important
}
 
OR
 
.RadToolTip .rtWrapperContent // Replace yourclasname with "rtWrapperContent "
{
 padding:5px !important
}
 
OR
 
.RadToolTip_YOURTHEMENAME // If both of above not worked then try with this
{
 padding:5px !important
}


Thanks,
Jayesh Goyani
0
Ashish
Top achievements
Rank 1
answered on 17 Sep 2012, 08:11 AM

Thanks Jayesh, your solution work for us.

Thanks,
Ashish
Tags
General Discussions
Asked by
Ashish
Top achievements
Rank 1
Answers by
Jayesh Goyani
Top achievements
Rank 2
Ashish
Top achievements
Rank 1
Share this question
or