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

[Solved] MVC Tab OuterBorder Line

1 Answer 61 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Tosin
Top achievements
Rank 1
Tosin asked on 27 Sep 2011, 12:29 AM
Hi,
my objective is to completely remove the borders of an MVC tabstrip and override the theme backgroud colow.

The css code block below  works to remove the major border but leaves behind a green line. I also do not seem to be able to do make the content backgroud white or transparent - I have "hay" as my current theme.

 

div.t-tabstrip

{

border: 0 none;

 background:none;

}
div.t-tabstrip .t-tabstrip-items .t-item

{

background-color:#E6E6E6;

}

 div.t-tabstrip .t-tabstrip-items .t-state-active

 {
background-color:#fff;

 }

Thanks in advance !

1 Answer, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 28 Sep 2011, 11:20 AM
Hello Tosin,

Here is how to achieve this (in addition to your style)

div.t-tabstrip .t-content
{
    background: transparent;
    border: 0;
}


Kind regards,
Georgi Tunev
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now
Tags
TabStrip
Asked by
Tosin
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Share this question
or