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

4th level indent css issue

1 Answer 71 Views
PanelBar
This is a migrated thread and some comments may be shown as answers.
Kris
Top achievements
Rank 1
Kris asked on 21 Oct 2009, 04:54 PM
I have a rad panel organized in the following manner:

Region
--> State
----> Disaster
------> Area
--------> Team

The problem I am having is the the Team level is at the same indention as the Area level. I have determined the css code to fix this is the following:

    .RadPanelBar .rpLevel4 .rpOut
    {
        padding-left: 45px;
    }

But I do not know where to put this line. I have tried putting it in my local css file but it overwrites it and uses the level 3 padding which is 30px. And I cannot find where the css setting for level 2 and level 3 reside.

Any help with this is much appreciated,
Thanks

1 Answer, 1 is accepted

Sort by
0
Accepted
Schlurk
Top achievements
Rank 2
answered on 21 Oct 2009, 10:00 PM
Try using this piece of code:
<style type="text/css"
    .RadPanelBar .rpLevel4 .rpOut 
    { 
        padding-left: 45px !important; 
    } 
</style> 

Just place this in your <head></head> tag and it should work.
Tags
PanelBar
Asked by
Kris
Top achievements
Rank 1
Answers by
Schlurk
Top achievements
Rank 2
Share this question
or