Whenever I resize the window, the text in my footer overlaps with my button:
Any suggestions on how to resolve this issue?
Here is the HTML code snippet:
<div data-role="footer" class="footer2">
<a href="#seiteHome" class="ui-btn-left ui-btn-back ui-btn ui-btn-corner-all ui-shadow ui-btn-hover-a ui-btn ui-shadow ui-corner-all ui-btn-icon-left ui-icon-back">Home</a>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
</div>
And here is the corresponding CSS code:
.footer2 {
text-align: center;
padding: 7px;
border-radius: 10px;
clear: both;
}
Thank you for your help in advance.