Rank: Newbie Groups: Member
Joined: 2/26/2008 Posts: 2
|
hello friends. i'm new here in eo, and i just love these controls... one question: i've decided to use the "red tabs" menu style, but i want the second level to always be visible, meaning if no tab was selected, there will still be an empty row with the same background. is there any easy way doing it without simply putting an equally sized and colored row?
please help, and thank u
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, I believe the easiest way is to put an equally sized colored row, probablly with a DIV. For example:
Code: HTML/ASPX
<div>
....our menu goes here....
</div>
<div style="width:500px;height:20px;background-color:red">
</div>
This way there is always a red bar visible below the menu. When the real sub menu is displayed, it is displayed over the red DIV, when no sub menu is visible, the DIV is visible. Thanks
|
Rank: Newbie Groups: Member
Joined: 2/26/2008 Posts: 2
|
tnx
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Not a problem. Let us know if you have any other questions.
|