securedme said: Yes that's what I've been doing for this sort of thing... I found this instead:
.node-extra-row ul.listInline--bullet li.node-extra-user::before, .structItem-minor ul.structItem-parts li.structItem-startDate::before {
content: none !important;
}
.node-extra-row...
.node-extra-row ul.listInline--bullet li.node-extra-user::before {
content: none !important;
}
.node-extra-row ul.listInline--bullet li.node-extra-user::before {
content: "\XXXX\20";
}
Thanks but how this element was found?
securedme said: Yes that's what I've been doing for this sort of thing... I found this instead:
.node-extra-row ul.listInline--bullet li.node-extra-user::before, .structItem-minor ul.structItem-parts li.structItem-startDate::before {
content: none !important;
}
.node-extra-row ul.listInline--bullet li.node-extra-user::before, .structItem-minor ul.structItem-parts li.structItem-startDate::before {
content: "\XXXX\20";
}
That's correct - the code is the unicode character for middle dot.
.structItem-parts .structItem-startDate>li::before {
content: none !important;
}
.structItem-parts >li .structItem-startDate::before {
content: none !important;
}
I see what you're saying. There appears to be different css targets in play depending on the template in use. The code I originally posted targeted the forum list view, you are specifically looking at thread view.
This code below should take care of both... (if you find other areas just let me know if you can't figure them out on your own)
To delete the bullet - in extra.less add:
CSS:.node-extra-row ul.listInline--bullet li.node-extra-user::before, .structItem-minor ul.structItem-parts li.structItem-startDate::before { content: none !important; }
To change to something else - in extra.less add:
CSS:.node-extra-row ul.listInline--bullet li.node-extra-user::before, .structItem-minor ul.structItem-parts li.structItem-startDate::before { content: "\XXXX\20"; }
li.structItem-startDate::before
We use essential cookies to make this site work, and optional cookies to enhance your experience.