Currently, I am facing an issue on a website where I cannot make any changes to the CSS stylesheet. Whenever I attempt to modify a style, it appears to work temporarily but then reverts back to its original state once I release the mouse. It seems like the stylesheets are locked or restricted in some way. Specifically, I would like to reduce the top padding of the title and adjust its size, but my changes are not being saved permanently. Please visit emmaanddavidswedding.com to see the problem firsthand. I am confident that the issue lies within my code and not with the Dreamweaver program, as I do not encounter this problem when working on other files or websites. Any assistance would be greatly appreciated. Thank you in advance. Below is the code:
html
<div class="title">
<a class="title a href" href="http://www.emmaanddavidswedding.com">Emma & David's Wedding</a>
</div>
css
.title {
color: #FFFFFF;
font-family: alex-brush;
font-style: normal;
font-weight: 400;
font-size: 363%;
width: 100%;
padding-top: 15%;
margin-top: 1%;
text-align: center;
}
.title a href {
color: #ffffff;
}
.title a:hover {
color:#ffffff;
text-decoration:underline;
}