Batman got me to find plugins and sleuthing to find Inspector in Safari. I'm a Mac user, not that it should matter. So now I have found the code. ( I will say this is approaching over my head, but hopefully with your more experienced help perhaps I can make this work.)
When I delve into CSS code, I Find this code in this section (screen shot attached now to original post). I see no pxl area to adjust?
Thoughts?
jQuery(document).ready(function(){
var a = 1
// Do this for every drop down
jQuery(".pldrop > li > ul").each(function(){
var b = ""
jQuery(this).addClass("dropdown-menu");
if( jQuery(this).siblings("a").children(".caret").length===0 ){
b = ' <b class="caret"/>'
}
jQuery(this).siblings("a")
.addClass("dropdown-toggle")
.attr( "href", "#m" + a )
.attr("data-toggle","dropdown")
.append(

.parent()
.attr( "id", "m" + a++ )
.addClass("dropdown")
file://localhost/Users/Frank/Desktop/Navbar%20copy.tiff
jQuery(this)
.find('.sub-menu')
.addClass("dropdown-menu")
.parent()
.addClass('dropdown-submenu')
})
jQuery(".dropdown-toggle").dropdown()
})
jQuery(document).ready(function(){
touchFix();
});
function touchFix(){
jQuery('body')
.on('touchstart.dropdown', '.dropdown-menu', function (e) {e.stopPropagation();})
.on('touchstart.dropdown', '.dropdown-submenu', function (e) {e.preventDefault();});
}