I am currently in the process of updating a website at . One of the main changes I am making is to move the "English" button to the top right corner of the page.
Below is the HTML code for the button:
<a href="http://hairtothequeenbook.com" class="language btn">English</a><br>
I have created a CSS class that looks like this:
a .language .btn {
display: block !important;
position: absolute !important;
right: 0 !important;
top: 0 !important;
}
(I added the !important
just to test if there were any other styles conflicting with mine, but it did not help).
When I use Dev Tools and apply the styles, everything works correctly. However, when I make changes to the CSS file and upload it to the server, nothing happens.
Do you have any suggestions on what I might be doing wrong? I feel like I must be overlooking something obvious, as I have tried various adjustments without success...