I'm having a very odd problem with CSS either not updating after changes or simply not going away after deleting it.
<form action="Test.php" method="post" class="Box1">
<h1> Please Enter Main link Information</h1>
Link <input value= "<a href ='Enter Website here'>Enter Headline here</a>" type="text" size="50" name="linkurl"><br>
Story #:<input type="text" " name="storyn">
<input type="submit">
</form>
My CSS looks like this:
.Box1{
position: absolute;
left: 400px;
top: 100px;
height: 300px;
}
Now the first time I typed this in, it worked perfectly. Then I went to change the values within the CSS, and it wouldn't change, tried again, wouldn't change. Finally I removed .Box1
completely from the CSS page, just to see what would happen, and it still didn't change anything. Is there anything on the server side that could be causing CSS not to update? I've never had an issue like this before.