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

Clear in embedded stylesheet

1 Answer 57 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Mike Hanson
Top achievements
Rank 1
Mike Hanson asked on 05 Oct 2008, 01:22 PM
The embedded Office2007 theme for the RadTabStrip (ASP.NET AJAX version) has an embedded clear that caused me a problem in a two column floated layout.  Hopefully posting this might help others who have the same problem.

The problem style was as follows:

.RadTabStrip

.rtsLevel{
clear:both;
overflow: hidden;
position: relative;
width: 100%;
}

This was pushing the div the style is attached to and therfore my tabs down to the bottom of the page when it was viewed in any non IE browser.

I added the following more specific style to a stylesheet in my theme and the problem was solved.

div.RadTabStrip

.rtsLevel{
clear: none;
overflow: hidden;
position: relative;
width: 100%;
}

1 Answer, 1 is accepted

Sort by
0
Tajes
Top achievements
Rank 1
answered on 06 May 2011, 12:51 PM
Thank you so much. You have saved my life.
Tags
TabStrip
Asked by
Mike Hanson
Top achievements
Rank 1
Answers by
Tajes
Top achievements
Rank 1
Share this question
or