I have encountered a similar issue before, and the solution proposed involved making changes via CSS. Despite my attempts, I have been unsuccessful in replicating the solution with my own code. Currently, the link appears as follows:
I have also referred to the documentation for react-bootstrap
, but no specific tag has been mentioned to remove that styling.
https://i.sstatic.net/BKCer.png
I am seeking to eliminate the blue underline from the link.
Code :
<ListGroup.Item>
<Link to={`/panelmember/${item._id}`}>
<Card.Title as="h2">
<strong>{item.name}</strong>
</Card.Title>
</Link>
</ListGroup.Item>
Is there a way to insert a short code within the <Link>
tag? Alternatively, if customization in index.css
is required, do you have any suggestions for a solution?