The Q&A plugin is compatible with latest NodeBB, looks like you just forgot to run ./nodebb build.
Hide the "Moved" arrow
-
Once I've moved a topic to a better category, I don't want users to see that black "moved" arrow on the left of the topic. How do I get rid of that?
-
Go to
/admin/appearance/customise
and paste this into the black textbox..fa.fa-arrow-circle-right { display:none; }
and hit the save icon.
-
@MJ Might want to make it more specific to the category page so it doesn't hide all right arrow icons everywhere
-
@baris said in Hide the "Moved" arrow:
@MJ Might to make it more specific to the category page so it doesn't hide all right arrow icons everywhere
How? can you please tell me, i'm still learning CSS
-
If you look at the source of the category page, on the body element there's a class attribute containing multiple classes. One of which is something like
category-3
. You can add.category-3
to the beginning of the css selector you already have there to make it only specific to that category. Make sure there's a space between.category-3
and the rest of it. -