I've been struggling to eliminate the background color of the nav-link hover by setting it to transparent, but it still displays a background when hovered. I want to change the hover color for the text only, similar to the nav-brand, but I can't seem to figure it out. Can someone assist me with this, please? I would greatly appreciate it. Here is the HTML (ejs) code:
<!DOCTYPE html>
<html lang="en" dir="ltr">
// HTML code continues...
</html>
CSS:
/* Navbar Section */
.navbar {
// CSS code for navbar
}
// More CSS styling...
/* Footer Section */
#footer {
// CSS code for footer
}
I am using Express to render ejs files:
const express = require("express");
const bodyParser = require("body-parser");
// Express setup and configuration...
app.listen(process.env.PORT || 3000, function() {
console.log("Server started successfully");
});