When I run my code locally, everything is formatted correctly. When I try to upload the file onto GoDaddy, I'm getting an error on lines that have width: calc(100% - (x)px).
This is my code that I'm getting an error on:
.banner-links, .banner-links-under, .banner-links-up {
position: absolute;
width: calc(100% - 16px); /* Right here is where it says there's an error. */
padding: 8px;
text-align: right;
height: 28px;
color: black;
}
Is it a problem with GoDaddy not processing the calc() function? I have no idea what I'm doing wrong here.
Here is my error in picture form: in GoDaddy's uploader
