My project includes a CSS file named default.css, but it doesn't seem to be working or making any changes to my page
This is the content of default.css:
.feedbackText{
display: none;
text-align: center;
margin-left: 50px;
color: blue;
}
In the HTML file:
<!-- Bootstrap core CSS -->
<link href="<?=THEME_CSS?>bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="<?=THEME_CSS?>default.css" rel="stylesheet">
Further down in the HTML file:
<span id="invalidPasswordFeedback" class="feedbackText"></span>
The path seems correct as I checked it in the browser's source. The PHP code simply points to the CSS files. Thank you