Hi, in order to make any element responsive you’ll need to set (throught CSS coding) the position as static and define its width/height using percentages. For example:
.custompricingtable {position: static;
width: 100%
height100%}
For the “Learn more” button, you’ll need to go to the file js/main.js, and in line #140, you’ll find this code:
$('#primary-menu > ul > li > a[href*=#]').smoothScroll(
And you’ll need to replace it with:
$('a[href*=#]').smoothScroll(
Let me know if you have any further questions!