xarquid
Member
Posted 4 years ago #
The LINKS on my page (http://www.deadafterdark.com/xarquid/wordpress/) for some reason are displaying the ">" symbol after each category and before each category since the 1.5 upgrade. I run a modified kubrick theme.
Is there some way to correct this? Before the upgrade it did not display the break between and before each category as having the ">" symbol -- it just had spaces...
Thanks in advance.
I think it's because you're making one more hierarchy in your nested lists than kubrick is used to.
.entry ul li:before, #sidebar ul ul li:before {
content: "0BB 020";
}
is the part in your CSS that's making it do that. I'd put all the links stuff in it's own div so you could style it separately.
xarquid
Member
Posted 4 years ago #
So just by deleting the above in my style.css file it should correct the problem?
Only if you want to delete all the >> symbols.
Otherwise, put a <div class="my-list-stuff"> around your links stuff and then try this at the bottom of your CSS:
.my-list-stuff li:before {
content: "";
}
.my-list-stuff li li:before {
content: "\00BB \0020";
}
It might work.