1. Opened my stylesheet (Content/Resources/Stylesheets/SpliceTriPaneStyles.css) and added this directive near the top of the file:
Code: Select all
@import url('skin.css')Code: Select all
.tabs-nav li
{
margin-top: 0;
}Code: Select all
$('<link>')
.appendTo($('head'))
.attr({type : 'text/css', rel : 'stylesheet'})
.attr('href', 'Content/Resources/Stylesheets/skin.css');Interestingly, if I open my Output folder and modify the tabs-nav li margin setting in Skins\Default\Stylesheets\Styles.css, everything works as I hope, so I know that the css itself is correct..
I'm clearly missing something; any help appreciated.
- Gary