-
Hi, I have searched the documentation but cannot seem to find how to change the style of external links in the docusaurus classic-theme. Is this possible? Inspecting the block element in Firefox shows that all external links in navbar and footer are appended with an icon.
How do I change the default behaviour of the classic-theme to avoid appending the external link icon? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You can swizzle the theme components or provide custom CSS to hide things you don't like. There's no first-class config option for every single possible UI customization because everyone want something slightly different. |
Beta Was this translation helpful? Give feedback.
-
Adding this to my .iconExternalLink_node_modules-\@docusaurus-theme-classic-lib-theme-Icon-ExternalLink-styles-module {
display: none;
} |
Beta Was this translation helpful? Give feedback.
You can swizzle the theme components or provide custom CSS to hide things you don't like. There's no first-class config option for every single possible UI customization because everyone want something slightly different.