Osclass forums
Support forums => old => Topic started by: Adyyda on July 07, 2015, 06:55:16 pm
-
Can anyone tell me where the submit button is constructed?
We have for instance in login area only this code <button type="submit"><?php _e("Log in", 'modern');?></button>
which is complicated into
<div class="button" style="-moz-user-select: none;">
<span>
Log in
<button type="submit">Log in</button>
</span>
</div>
which in fact are 2 buttons and 1 has absolute position, outside of container
div.button a, div.button button, div.button input {
position: absolute;
top: -9999px;
-
Anyone? This is theme related because in modern is not constructed like this. Problem is i can't find in which file is done.