I've created a site map via an XSLT standard Site Map File and macro which I've added to my richtext editor controls. It displays the site map perfectly in the editor but when I publish it the site styles take over. Does anyone know where I can find the styles for the site map XSLT so that I can apply them to the site css?
For anyone with a similar frustration on styling your site map......
Didn't find the site map css but put this in my css that made it look pretty swanky:
#sitemap { font-size: 100%; font-weight: bold; } #sitemap li ul { padding-left: 16px; font-size: 90%; font-weight: normal; } #sitemap li { list-style: none; } #sitemap li ul li ul li { padding-left: 16px; background: url('../media/Assets/arrow_right.gif') no-repeat 0 50%; }
Where to find the CSS for the Site Map?
I've created a site map via an XSLT standard Site Map File and macro which I've added to my richtext editor controls. It displays the site map perfectly in the editor but when I publish it the site styles take over. Does anyone know where I can find the styles for the site map XSLT so that I can apply them to the site css?
For anyone with a similar frustration on styling your site map......
Didn't find the site map css but put this in my css that made it look pretty swanky:
#sitemap
{
font-size: 100%;
font-weight: bold;
}
#sitemap li ul {
padding-left: 16px;
font-size: 90%;
font-weight: normal;
}
#sitemap li {
list-style: none;
}
#sitemap li ul li ul li {
padding-left: 16px;
background: url('../media/Assets/arrow_right.gif') no-repeat 0 50%;
}
Thanks to http://simplebits.com/notebook/2003/10/19/styling-nested-lists/
is working on a reply...