Is there a way to adjust the position of the "Next" button when a certain div is not visible on the page? I want the button to come at the place of the hidden div.
<div ng-show="(currentQuoteQto.requestType===constants.ssoQuote || currentQuoteQto.bu === constants.frNsQuote) && currentQuoteQto.status === constants.ssoPendingApproval
&& (!currentCustomers[quoteRequest.contractingPartyIc01].onlineApproval ||
(currentQuoteQto.additionalDocuments && currentQuoteQto.additionalDocuments.length>0))" style="text-align: left; margin-left: 70px; margin-top: 25px" >
<span translate>qrDetail.uploadDocuments</span><br>
<span ng-repeat="additionalDocument in currentQuoteQto.additionalDocuments">
{{$index + 1}}.{{additionalDocument.documentName}}<br>
</span>
<span ng-show="!currentCustomers[quoteRequest.contractingPartyIc01].onlineApproval">{{currentQuoteQto.additionalDocuments.length+1}}.<span translate>qrDetail.signedOrderForm</span></span>
<div style="float: right" attachments show-Button=true attachments-data="quoteRequest" is-quote=true></div>
</div>
</div>
<div style="text-align: right;margin-bottom: 40px;float: right">
<table>
<tr>
<td> <button class="bouton_action"
ng-click="showBundleAdditionalInformation()"
ng-disabled="!visibilityOfNextButtonForBundle()"
translate>button.next
</button> </td>
<td> <button class="bouton_action"
ng-show="visibilityOfSubmitButtonForBundle() "
ng-click="setBundleOption();manageOrderRejection(false);manageQuoteRejection();"
ng-class="{bouton_action_l_pushed:inProgress.submit}"
translate>button.submitQuote
</button> </td>
</tr>
</table>
</div>