By Andrew Neighbour on Monday, 11 June 2018
Posted in General Issues
Likes 0
Views 570
Votes 0
Hi!

Is there somewhere to set the size of the T&C popup box that appears when checking out - ours is quite long and the content doesn't fit, nor scroll.

Thanks,
Andrew
Hello Andrew,

This issue is coming due to css conflicts. To fix modal height issue, do the changes on below mentioned css file.
To to root/components/com_payplans/media/css/payplans.css, near line no. 391, find below mentioned line of code

.modal-body {
max-height: none ! important;
overflow-y: auto;
padding: 15px;
position: relative;
}


Replace with

.modal-body {
max-height: 400px !important;
overflow-y: auto;
padding: 15px;
position: relative;
}


Update me if still issue persist.
·
Monday, 11 June 2018 11:15
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Manisha! That worked ;-)
Andrew
·
Thursday, 14 June 2018 00:16
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Andrew, glad that your issue is resolved now
·
Thursday, 14 June 2018 00:42
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post