This question is locked. New answers and comments are not allowed.
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.
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 !