Error Description

While calling up my registration form from the Joomla Core via a mobile phone, the links have been placed in the right upper corner an on each othe

A screenshot of the problem:

Screenshot

Reason

The error is created from the CSS of my template. The links have the CSS-class modal, which defines a fixed position.

.modal
{
position: fixed;
top: 20px;
right: 20px;
left: 20px;
width: auto;
margin: 0;
}

Debugging/ Workaround

As a workaround the CSS-classes or links in context with the ID could be defined with the ID in your template / custom CSS. Regarding to this copy and paste the following code. This will overwrite poistion:fixed. In the following code, I decided to use the ID and the <a>-element, the Hyperlink-Tag.

#jform_profile_tos-lbl a, #jform_privacyconsent_privacy-lbl a
{
position:relative;
}