Merge branch 'ticket-landingpage' into develop
This commit is contained in:
commit
f2e0e80149
@ -7,6 +7,19 @@
|
||||
margin-top: 5px;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
if ($('#submitAccount').outerWidth() > $('a#SubmitLogin').outerWidth()) {
|
||||
$('a#SubmitLogin').css({
|
||||
width: $('#submitAccount').outerWidth()+'px'
|
||||
});
|
||||
} else {
|
||||
$('#submitAccount').css({
|
||||
width: $('a#SubmitLogin').outerWidth()+'px'
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<p class="cart_navigation" id="account_form_bottom">
|
||||
<a id="SubmitLogin" href="{$link->getPageLink('authentication.php')}">{l s='Already member' mod='landingpages'}</a>
|
||||
</p>
|
||||
|
@ -18,6 +18,19 @@
|
||||
background: #565485;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
if ($('#submitAccount').outerWidth() > $('a#SubmitLogin').outerWidth()) {
|
||||
$('a#SubmitLogin').css({
|
||||
width: $('#submitAccount').outerWidth()+'px'
|
||||
});
|
||||
} else {
|
||||
$('#submitAccount').css({
|
||||
width: $('a#SubmitLogin').outerWidth()+'px'
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<p class="cart_navigation" id="account_form_bottom">
|
||||
<a id="SubmitLogin" href="{$link->getPageLink('authentication.php')}">{l s='Already member' mod='landingpages'}</a>
|
||||
</p>
|
||||
|
Loading…
Reference in New Issue
Block a user