Still no reply?! Been a week.
I forgot to add this code into the file because my site was coded a little different.
function scrollToAnchor(aid){
var aTag = $("#"+ aid +"");
var wWidth = $(window).width();
var wHeight = $(window).height();
topMargin = wHeight/2 - aTag.height()/2;
$('html,body').animate({scrollTop: aTag.offset().top - topMargin},'slow');
}
$(".scroll_to").click(function() {
var scrollId = $(this).attr('id');
scrollToAnchor('scroll_to_'+scrollId);
});
That just needs to be included for the smooth scroll on the quick links. I had this built into another file and forgot it needs to be in this as well.
Sorry I have been busy building a WordPress site. Custom healthcare EMR deployments can be time consuming. Below is a link to the zip file so you can see the code. It is the whole plugin, so all the edited files are inside.
http://chasemg.com/files/easy-faqs.zip