With the help of my UX designer, I believe I have tracked down the style sheet that is taking precedence over my ESO_StylesForHomePage.css file. It appears that a style sheet called Tablet.css is the culprit, and I infer that the Tablet.css file is generated by Flare during the build process.
After fiddling with things a bit, my final solution was to add the
tag and attribute to my ESO_StylesForHomePage.css file, below the
tag:
Code: Select all
nav.sidenav-wrapper
{
display: none;
}
.title-bar .menu-icon span
{
display: none;
}
I don't know why the solution that David Lee pointed me to didn't work (I agree with him that it should have), so I thought I'd share my little addition to the the stylesheet that made if work for me. Hopefully someone else out there will find it useful, too.
Thanks,
Tracey