I am currently working on implementing a Help functionality for our users. In order to do this, I have placed a div right above my footer. However, I am facing an issue where the styling of my div is affecting the footer in ways that I cannot figure out.
This is the desired look that I am aiming for - https://i.sstatic.net/7Pjuk.png
Unfortunately, when I try to implement it, this is how it looks -
https://i.sstatic.net/l0nVg.png
The styles applied to my div seem to be interfering with the footer styling.
Here is the HTML code snippet:
<div class="help-img pull-right">
<a href="https://google.com">
<img src="~/Content/images/icon-help.png?version=@buildVersion" />
</a>
</div>
<footer class="clearfix">
<div class="pull-left">
<span id="footerYear"></span> © <a href="https://viacommediaservices.visualstudio.com" target="_blank">VMS Web @ViewContext.Controller.GetType().Assembly.GetName().Version</a>
</div>
<div class="pull-right">
<a href="~/content/help/VMSWeb One Sheet.pdf" target="_blank">VMS Web User Guide</a> |
<a href="javascript:void(0)" onclick=";">Terms of Use</a>
</div>
</footer>
This is the CSS being applied:
.help-img {
position: relative;
bottom: 50px;
margin-right: 28px;
}
Any assistance or suggestions would be greatly appreciated. Thank you